From 2c408dcba846fc3254d23323e76292d05a535e17 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 dae650af0..df773460f 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"