From ef361b1bd0a2be5412353715960223f65f9ee51b Mon Sep 17 00:00:00 2001 From: Yasser Zamani Date: Mon, 19 Nov 2018 13:45:22 +0330 Subject: [PATCH] fix travis if statement syntax --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5ba7076ca..e12ba2fb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,11 +12,10 @@ script: mvn test -DskipAssembly after_success: # TODO delete following if statement after fix of https://github.com/cobertura/cobertura/issues/271 - - if [ "$TRAVIS_JDK_VERSION" == "openjdk8" ] || [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then - mvn clean cobertura:cobertura org.eluder.coveralls:coveralls-maven-plugin:report com.updateimpact:updateimpact-maven-plugin:submit -Ptravis-coveralls,update-impact -DskipAssembly - else - echo "Not reporting coverage for $TRAVIS_JDK_VERSION due to incomatibility or to save performance"; - fi + - if [ "$TRAVIS_JDK_VERSION" == "openjdk8" ] || [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; + then mvn clean cobertura:cobertura org.eluder.coveralls:coveralls-maven-plugin:report com.updateimpact:updateimpact-maven-plugin:submit -Ptravis-coveralls,update-impact -DskipAssembly; + else echo "Not reporting coverage for $TRAVIS_JDK_VERSION due to incomatibility or to save performance"; + fi; env: global: