summaryrefslogtreecommitdiffstats
path: root/27/fpm-alpine/entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to '27/fpm-alpine/entrypoint.sh')
-rwxr-xr-x27/fpm-alpine/entrypoint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/27/fpm-alpine/entrypoint.sh b/27/fpm-alpine/entrypoint.sh
index edb539a0..5b627f07 100755
--- a/27/fpm-alpine/entrypoint.sh
+++ b/27/fpm-alpine/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}" -maxdepth 1 -iname '*.sh' '(' -type f -o -type l ')' -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