From c29024e8c5f2b9849fec3281328fbe0b772474af Mon Sep 17 00:00:00 2001 From: Yevhen Kolomeiko Date: Tue, 5 Dec 2023 11:35:34 +0100 Subject: [PATCH] Fix docker-entrypoint.sh Signed-off-by: Yevhen Kolomeiko --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index edb539a0..d272ae68 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -32,7 +32,7 @@ run_path() { echo "=> Searching for scripts (*.sh) to run, located in the folder: ${hook_folder_path}" ( - find "${hook_folder_path}" -type f -maxdepth 1 -iname '*.sh' -print | sort | while read -r script_file_path; do + find "${hook_folder_path}" -type f,l -maxdepth 1 -iname '*.sh' -print | sort | while read -r script_file_path; do if ! [ -x "${script_file_path}" ]; then echo "==> The script \"${script_file_path}\" was skipped, because it didn't have the executable flag" continue