Skip to content

Commit 07e47b1

Browse files
authored
Merge pull request #110 from lorentey/burn-again-shell
[run-full-tests.sh] Fix bashism: == vs =
2 parents 37e15ae + 103008a commit 07e47b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utils/run-full-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bold_off="$(tput sgr0)"
2727

2828
spm_flags=""
2929

30-
if [ "$(uname)" == "Darwin" ]; then
30+
if [ "$(uname)" = "Darwin" ]; then
3131
swift="xcrun swift"
3232
else
3333
swift="swift"

0 commit comments

Comments
 (0)