From d31b89eabb0b65e835b62c3485d0e57752c2e89b Mon Sep 17 00:00:00 2001 From: Yasser Zamani Date: Thu, 13 Dec 2018 21:29:36 +0330 Subject: [PATCH] fix update-impact plugin for Pull Requests if statement See also: https://docs.travis-ci.com/user/environment-variables/#convenience-variables --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bb61d0916..b25621abb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ jdk: install: true script: - - if [ "$TRAVIS_PULL_REQUEST" == "true" ]; then + - if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then ./mvnw test -DskipAssembly; else ./mvnw test -DskipAssembly -Dupdate-impact;