From 44bf751e3560a649e06930e59596b5f2b82aa682 Mon Sep 17 00:00:00 2001 From: Kirill Vainer Date: Sat, 26 Nov 2016 00:24:26 -0500 Subject: [PATCH] travis: fix incorrect condition --- .travis.yml | 2 +- jme3-bullet-native/build.gradle | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ea587f572..e1ac119c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/jme3-bullet-native/build.gradle b/jme3-bullet-native/build.gradle index b94769943..80fa6c759 100644 --- a/jme3-bullet-native/build.gradle +++ b/jme3-bullet-native/build.gradle @@ -191,6 +191,7 @@ unzipBullet.dependsOn { } task unzipBulletIfNeeded { + } unzipBulletIfNeeded.dependsOn {