From 3ba410053e99ac1b2f74c18b5743e194ea393f54 Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Mon, 27 Oct 2025 16:51:17 -0400 Subject: [PATCH] Update install/production-filesystem/entrypoint.sh Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- install/production-filesystem/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/production-filesystem/entrypoint.sh b/install/production-filesystem/entrypoint.sh index bae04064..1ccfbd48 100755 --- a/install/production-filesystem/entrypoint.sh +++ b/install/production-filesystem/entrypoint.sh @@ -56,8 +56,8 @@ set -u FAILED_STATUS="" echo "Startup pre-checks" for script in ${SYSTEM_SERVICES_SCRIPTS}/check-*.sh; do - if [ -n "${DISABLE_STARTUP_CHECKS:-}" ]; then - echo "Skipping startup checks as DISABLE_STARTUP_CHECKS is set." + if [ -n "${SKIP_TESTS:-}" ]; then + echo "Skipping startup checks as SKIP_TESTS is set." break fi script_name=$(basename "$script" | sed 's/^check-//;s/\.sh$//;s/-/ /g')