From 5279901a03372182dc41b58b2b114febed2581ac Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sun, 8 Oct 2017 09:54:02 +0200 Subject: [PATCH] [ci] fix script --- .travis/common-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/common-functions.sh b/.travis/common-functions.sh index 34cf4c973c..129bde4639 100755 --- a/.travis/common-functions.sh +++ b/.travis/common-functions.sh @@ -20,7 +20,7 @@ function travis_isPullRequest() { } function travis_isPush() { - if [ "${TRAVIS_REPO_SLUG}" = "pmd/pmd" && "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_SECURE_ENV_VARS}" = "true" ]; then + if [ "${TRAVIS_REPO_SLUG}" = "pmd/pmd" ] && [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_SECURE_ENV_VARS}" = "true" ]; then return 0 else return 1