This is an automated email from the ASF dual-hosted git repository.

yasserzamani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/master by this push:
     new d31b89e  fix update-impact plugin for Pull Requests if statement
d31b89e is described below

commit d31b89eabb0b65e835b62c3485d0e57752c2e89b
Author: Yasser Zamani <yasserzam...@apache.org>
AuthorDate: Thu Dec 13 21:29:36 2018 +0330

    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 bb61d09..b25621a 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;

Reply via email to