From 7f192659062973a3336b9a9c79a696bf684f9d2e Mon Sep 17 00:00:00 2001 From: Sarah G Date: Fri, 18 Aug 2023 13:00:13 +0200 Subject: [PATCH] Fix error in test-alive script --- infra/scripts/test-alive.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/scripts/test-alive.sh b/infra/scripts/test-alive.sh index 4fbd26b9..88df4f8a 100755 --- a/infra/scripts/test-alive.sh +++ b/infra/scripts/test-alive.sh @@ -7,7 +7,7 @@ timeout=900; elapse=0; range=10; test_result=1 -TAG=$(make get-current-version) +TAG=$(make get-current-tag) until [ "$elapse" -ge "$timeout" -o "$test_result" -eq "0" ] ; do [[ "$(curl -L -s $1/api/version)" == "$TAG" ]]