You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemall.apache.org by my...@apache.org on 2018/11/09 06:39:45 UTC

incubator-hivemall git commit: Fixed Travis CI bug [[: not found

Repository: incubator-hivemall
Updated Branches:
  refs/heads/master 526137914 -> e91e0f2ec


Fixed Travis CI bug [[: not found


Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/e91e0f2e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/e91e0f2e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/e91e0f2e

Branch: refs/heads/master
Commit: e91e0f2ec63c97ceb439f9c5ceb610f5f7be21ca
Parents: 5261379
Author: Makoto Yui <my...@apache.org>
Authored: Fri Nov 9 15:39:35 2018 +0900
Committer: Makoto Yui <my...@apache.org>
Committed: Fri Nov 9 15:39:35 2018 +0900

----------------------------------------------------------------------
 bin/run_travis_tests.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/e91e0f2e/bin/run_travis_tests.sh
----------------------------------------------------------------------
diff --git a/bin/run_travis_tests.sh b/bin/run_travis_tests.sh
index b9e0763..83d1cc1 100755
--- a/bin/run_travis_tests.sh
+++ b/bin/run_travis_tests.sh
@@ -38,7 +38,7 @@ export MAVEN_OPTS="-XX:MaxPermSize=256m"
 mvn -q scalastyle:check -pl spark-2.1 -am test
 
 # spark-2.2 runs on Java 8+
-if [[ ! -z "$(java -version 2>&1 | grep 1.8)" ]]; then
+if [ ! -z "$(java -version 2>&1 | grep 1.8)" ]; then
   mvn -q scalastyle:check clean -Djava.source.version=1.8 -Djava.target.version=1.8 \
     -pl spark-2.2,spark-2.3 -am test
 fi