diff --git a/travis-ci/travis-coveralls-report.sh b/travis-ci/travis-coveralls-report.sh index aab1704..ae6c472 100755 --- a/travis-ci/travis-coveralls-report.sh +++ b/travis-ci/travis-coveralls-report.sh @@ -1,3 +1,5 @@ #!/usr/bin/env bash -./mvnw --projects builder,plugin test jacoco:report coveralls:report +if [ "$TRAVIS" = "true" ];then + ./mvnw --projects builder,plugin test jacoco:report coveralls:report +fi