diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-12-02 18:12:39 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-12-02 18:12:49 +0100 |
commit | 99751f508494d59c1394d374163d86a27868106f (patch) | |
tree | 73a07666362426b786e4df33ecfe6da1b7a47076 /travis.sh | |
parent | afb14c60a0af68d29562eb40c4f4e1757245b780 (diff) | |
download | sonarqube-99751f508494d59c1394d374163d86a27868106f.tar.gz sonarqube-99751f508494d59c1394d374163d86a27868106f.zip |
Fix execution of it-plugins on travis
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 2742ad77c9e..fcbaec38de9 100755 --- a/travis.sh +++ b/travis.sh @@ -75,7 +75,7 @@ WEB) ;; IT) - if [ "$IT_CATEGORY" == "Plugins" ] && [ -n "$GITHUB_TOKEN" ]; then + if [ "$IT_CATEGORY" == "Plugins" ] && [ ! -n "$GITHUB_TOKEN" ]; then echo "This job is ignored as it needs to access a private GitHub repository" else installTravisTools |