From 3107f0707759dbb493004c14d01f386ba320519f Mon Sep 17 00:00:00 2001 From: Dani Tseitlin Date: Sat, 28 Sep 2024 03:09:28 +0300 Subject: [PATCH] . --- scripts/healthcheck.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/healthcheck.bash b/scripts/healthcheck.bash index 39009eb..480ec8b 100755 --- a/scripts/healthcheck.bash +++ b/scripts/healthcheck.bash @@ -5,7 +5,7 @@ wait-for-status() { echo "Waiting for services status" echo "" bash -c \ - 'while [[ "$(npm run status)" == *"(starting)"* ]];\ + 'while [[ "$(npm run status)" == *"(starting)"*] || ["$(npm run status)" == *"(Exited)"*]];\ do echo "Waiting for services" && sleep 2;\ done' }