Skip to content

Commit 2c408dc

Browse files
kianmengmatthewmcneely
authored andcommitted
fix: test.sh error
Resolves the following error : ./test.sh: line 8: [: =: unary operator expected
1 parent d071e69 commit 2c408dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -eo pipefail
55
go version
66

77
# Check if Github Actions is running
8-
if [ $CI = "true" ]; then
8+
if [ "$CI" = "true" ]; then
99
# Enable code coverage
1010
# export because tests run in a subprocess
1111
export covermode="-covermode=atomic"

0 commit comments

Comments
 (0)