Skip to content

Commit 0b1ebf5

Browse files
authored
fix: test.sh error (#2225)
**Description** Resolves the following error : ./test.sh: line 8: [: =: unary operator expected **Checklist** - [x] Code compiles correctly and linting passes locally - [ ] For all _code_ changes, an entry added to the `CHANGELOG.md` file describing and linking to this PR - [ ] Tests added for new functionality, or regression tests for bug fixes added as applicable - [ ] For public APIs, new features, etc., PR on [docs repo](https://github.com/hypermodeinc/docs) staged and linked here
1 parent d071e69 commit 0b1ebf5

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)