Browse Source

Fix Disabling of IT category "plugins" on pull requests

tags/5.2-RC1
Simon Brandhof 8 years ago
parent
commit
634c7df11f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      travis.sh

+ 1
- 1
travis.sh View File

@@ -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

Loading…
Cancel
Save