From 9fa583de06547eac110317bdc2cfddf0fbd1c5fc Mon Sep 17 00:00:00 2001 From: fwiegerinck Date: Mon, 20 Jan 2025 00:03:23 +0100 Subject: [PATCH] Attempt to fix validation --- install/alpine-step-ca-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/alpine-step-ca-install.sh b/install/alpine-step-ca-install.sh index cf89e827..93cb3a5f 100644 --- a/install/alpine-step-ca-install.sh +++ b/install/alpine-step-ca-install.sh @@ -75,7 +75,7 @@ while ! nc -z localhost 443; do sleep 0.5 ((timeout_counter++)) - if [[ $timeout_counter -gt 30 ]]; then + if (( timeout_counter > 30 )); then msg_error "Failed to start Step-CA" exit fi