travis: fix incorrect condition

This commit is contained in:
Kirill Vainer 2016-11-26 00:24:26 -05:00
parent 0881856647
commit 44bf751e35
2 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,7 @@ script:
- ./gradlew check
after_success:
- '[ -n "$TRAVIS_TAG" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ -n "$UPLOAD_NATIVE" ] && ./private/upload_native.sh || :'
- '[ "$TRAVIS_PULL_REQUEST" == "false" ] && [ -n "$UPLOAD_NATIVE" ] && ./private/upload_native.sh || :'
- '[ -n "$TRAVIS_TAG" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ -n "$UPLOAD" ] && ./gradlew bintrayUpload || :'
notifications:

View File

@ -191,6 +191,7 @@ unzipBullet.dependsOn {
}
task unzipBulletIfNeeded {
}
unzipBulletIfNeeded.dependsOn {