diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-09-29 11:46:24 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-09-29 11:46:24 +0200 |
commit | 634c7df11feac71cf27f519668fe8dbf477c7ab6 (patch) | |
tree | 23c0abc1fe158fa627b59cca62d5bf4f274902ed /travis.sh | |
parent | 8d61942d055140fc5b43273e10960fb023e899ed (diff) | |
download | sonarqube-634c7df11feac71cf27f519668fe8dbf477c7ab6.tar.gz sonarqube-634c7df11feac71cf27f519668fe8dbf477c7ab6.zip |
Fix Disabling of IT category "plugins" on pull requests
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh index cec555d218f..062d09a0dd8 100755 --- a/travis.sh +++ b/travis.sh @@ -60,7 +60,7 @@ PRANALYSIS) ;; ITS) - if [ "$IT_CATEGORY" == "plugins" ] && [ "$TRAVIS_PULL_REQUEST" == "true" ]; then + if [ "$IT_CATEGORY" == "plugins" ] && [ "$TRAVIS_PULL_REQUEST" != "false" ]; then echo "Ignore this job since it needs access to private test licenses." else installTravisTools |