diff options
-rwxr-xr-x | travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh index d3972b45461..a7c429b2803 100755 --- a/travis.sh +++ b/travis.sh @@ -16,7 +16,7 @@ function strongEcho { case "$TARGET" in CI) - if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ -n "$GITHUB_TOKEN" ]; then + if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "${TRAVIS_BRANCH}" == "master" ] && [ -n "$GITHUB_TOKEN" ]; then # For security reasons environment variables are not available on the pull requests # coming from outside repositories # http://docs.travis-ci.com/user/pull-requests/#Security-Restrictions-when-testing-Pull-Requests |