summaryrefslogtreecommitdiffstats
path: root/28/fpm
diff options
context:
space:
mode:
authorGitHub Workflow <workflow@github.com>2024-01-09 22:31:54 +0000
committerGitHub Workflow <workflow@github.com>2024-01-09 22:31:54 +0000
commit28a76ceba469acb1267e35d8e6c9bd389ef9d186 (patch)
tree60ed20fd7dfb39aa2eddfc0eac8b997ebe815fd3 /28/fpm
parentd89def24d197f86bbd3c0e209dd4627e96740c53 (diff)
Runs update.sh
Diffstat (limited to '28/fpm')
-rwxr-xr-x28/fpm/entrypoint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/28/fpm/entrypoint.sh b/28/fpm/entrypoint.sh
index edb539a0..5b627f07 100755
--- a/28/fpm/entrypoint.sh
+++ b/28/fpm/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