From 3c94f529ad34e4bf94c200aeefbbedacfa48858f Mon Sep 17 00:00:00 2001
From: idk <hankhill19580@gmail.com>
Date: Sun, 28 Feb 2021 10:43:07 -0500
Subject: [PATCH] remove the bashism in travis.sh

---
 tests/scripts/travis.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/scripts/travis.sh b/tests/scripts/travis.sh
index 69d09f9bef..cd8f23d386 100755
--- a/tests/scripts/travis.sh
+++ b/tests/scripts/travis.sh
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-if [ "$TRAVIS_JDK_VERSION" == "oraclejdk11" ]; then
+if [ "$TRAVIS_JDK_VERSION" = "oraclejdk11" ]; then
   ./gradlew sonarqube codeCoverageReport -Dsonar.verbose=true
 else
   ./gradlew check codeCoverageReport
-- 
GitLab