summary refs log tree commit diff
path: root/.ci/script.sh
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2019-08-04 18:47:21 -0400
committerJoseph Donofry <joedonofry@gmail.com>2019-08-04 18:47:21 -0400
commiteb2f444c3707815ed094b74d6b13d945070315fc (patch)
tree2e0f20cdeed843777ae2fc89e625b4a44cf25a91 /.ci/script.sh
parentPush to S3 on all branches (diff)
downloadnheko-eb2f444c3707815ed094b74d6b13d945070315fc.tar.xz
Tweak S3 Upload settings
Diffstat (limited to '.ci/script.sh')
-rwxr-xr-x.ci/script.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/script.sh b/.ci/script.sh
index 1bde913c..ac6bfed6 100755
--- a/.ci/script.sh
+++ b/.ci/script.sh
@@ -41,11 +41,11 @@ cmake --build build
 if [ "$TRAVIS_OS_NAME" = "osx" ]; then
     make lint;
 
-    if [ "$DEPLOYMENT" = 1 ] && [ ! -z "$VERSION" ] ; then
+    if [ "$DEPLOYMENT" = 1 ] && [ -n "$VERSION" ] ; then
         make macos-deploy;
     fi
 fi
 
-if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$DEPLOYMENT" = 1 ] && [ ! -z "$VERSION" ]; then
+if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$DEPLOYMENT" = 1 ] && [ -n "$VERSION" ]; then
     make linux-deploy;
 fi