Allow symlinks for autostart scripts

This commit is contained in:
cytopia
2019-05-19 08:42:07 +02:00
parent 3075f2afca
commit 5a10077fe2

View File

@@ -19,7 +19,7 @@ execute_custom_scripts() {
if [ ! -d "${script_dir}" ]; then
run "mkdir -p ${script_dir}" "${debug}"
fi
script_files="$( find "${script_dir}" -type f -iname '*.sh' )"
script_files="$( find -L "${script_dir}" -type f -iname '*.sh' )"
# loop over them line by line
IFS='