travis: fix incorrect condition

native-compilation-test
Kirill Vainer 8 years ago
parent 0881856647
commit 44bf751e35
  1. 2
      .travis.yml
  2. 1
      jme3-bullet-native/build.gradle

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

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

Loading…
Cancel
Save