From d915999ae6951465bc610ff49158c05ebddd4164 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Sun, 28 Sep 2025 16:18:20 +0800 Subject: [PATCH] fix: test.sh error Resolves the following error : ./test.sh: line 8: [: =: unary operator expected --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 11da0ef9f..398697091 100755 --- a/test.sh +++ b/test.sh @@ -5,7 +5,7 @@ set -eo pipefail go version # Check if Github Actions is running -if [ $CI = "true" ]; then +if [ "$CI" = "true" ]; then # Enable code coverage # export because tests run in a subprocess export covermode="-covermode=atomic"