From b0aa5d0e454f4b092663cbbc05f2fbbcc923f655 Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Mon, 2 Mar 2026 19:41:06 +0000 Subject: [PATCH] Fix startup script matching for skips --- install/production-filesystem/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/production-filesystem/entrypoint.sh b/install/production-filesystem/entrypoint.sh index c162ad89..501e67c4 100755 --- a/install/production-filesystem/entrypoint.sh +++ b/install/production-filesystem/entrypoint.sh @@ -86,7 +86,7 @@ for script in "${ENTRYPOINT_CHECKS}"/*; do fi script_name=$(basename "$script" | sed 's/^[0-9]*-//;s/\.(sh|py)$//;s/-/ /g') echo "--> ${script_name} " - if [ -n "${SKIP_STARTUP_CHECKS:-}" ] && echo "${SKIP_STARTUP_CHECKS}" | grep -q "\b${script_name}\b"; then + if [ -n "${SKIP_STARTUP_CHECKS:-}" ] && echo "${SKIP_STARTUP_CHECKS}" | grep -Fq "${script_name}"; then printf "%sskip%s\n" "${GREY}" "${RESET}" continue fi