Skip to content

Commit

Permalink
Merge pull request #110 from lorentey/burn-again-shell
Browse files Browse the repository at this point in the history
[run-full-tests.sh] Fix bashism: == vs =
  • Loading branch information
lorentey authored Sep 10, 2021
2 parents 37e15ae + 103008a commit 07e47b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utils/run-full-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ bold_off="$(tput sgr0)"

spm_flags=""

if [ "$(uname)" == "Darwin" ]; then
if [ "$(uname)" = "Darwin" ]; then
swift="xcrun swift"
else
swift="swift"
Expand Down

0 comments on commit 07e47b1

Please sign in to comment.