From 103008aca495f3b80a50713086d451b08cef9f50 Mon Sep 17 00:00:00 2001 From: Karoy Lorentey Date: Fri, 10 Sep 2021 13:57:23 -0700 Subject: [PATCH] [run-full-tests.sh] Fix bashism: == vs = --- Utils/run-full-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils/run-full-tests.sh b/Utils/run-full-tests.sh index 39d193353..a77341b3d 100755 --- a/Utils/run-full-tests.sh +++ b/Utils/run-full-tests.sh @@ -27,7 +27,7 @@ bold_off="$(tput sgr0)" spm_flags="" -if [ "$(uname)" == "Darwin" ]; then +if [ "$(uname)" = "Darwin" ]; then swift="xcrun swift" else swift="swift"