From 05071a97eaf515e57a694206608346b30fdf236b Mon Sep 17 00:00:00 2001 From: Serge Schneider Date: Wed, 3 Sep 2025 20:53:07 +0100 Subject: [PATCH] build.sh: log skipped non-executable run.sh files --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index 23f9585..98cece8 100755 --- a/build.sh +++ b/build.sh @@ -68,6 +68,8 @@ EOF log "Begin ${SUB_STAGE_DIR}/${i}-run.sh" ./${i}-run.sh log "End ${SUB_STAGE_DIR}/${i}-run.sh" + elif [ -f ${i}-run.sh ]; then + log "Skip ${SUB_STAGE_DIR}/${i}-run.sh (not executable)" fi if [ -f ${i}-run-chroot.sh ]; then log "Begin ${SUB_STAGE_DIR}/${i}-run-chroot.sh"