From 968239beb365f71239d96e91830a5fd9cfa2fa46 Mon Sep 17 00:00:00 2001 From: BlockyBlockling <51190350+BlockyBlockling@users.noreply.github.com> Date: Mon, 4 Nov 2024 13:07:57 +0100 Subject: [PATCH] Update entrypoint.sh Fixed Syntax after last change --- .github/docker/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/docker/entrypoint.sh b/.github/docker/entrypoint.sh index 2f35b10a4..653c3e4ba 100644 --- a/.github/docker/entrypoint.sh +++ b/.github/docker/entrypoint.sh @@ -52,7 +52,7 @@ crond -L /var/log/crond -l 5 export SUPERVISORD_CADDY=false ## disable caddy if SKIP_CADDY is set -if [[ "$SKIP_CADDY:-" == "true" ]]; +if [[ "${SKIP_CADDY:-}" == "true" ]]; then echo "Starting PHP-FPM only" else echo "Starting PHP-FPM and Caddy"