From 433cd345703a8931b6dc1e7d60742bfe87641b17 Mon Sep 17 00:00:00 2001 From: Magesh Chandramouli Date: Wed, 2 Jan 2019 20:54:34 -0800 Subject: [PATCH] fixing skip condition --- .travis/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/deploy.sh b/.travis/deploy.sh index 553328b..a53acb0 100755 --- a/.travis/deploy.sh +++ b/.travis/deploy.sh @@ -1,7 +1,7 @@ #!/bin/bash cd `dirname $0`/.. -if [ "$TRAVIS_BRANCH" != 'master' ] || [ "$TRAVIS_PULL_REQUEST" == 'true' ]; then +if [ "$TRAVIS_BRANCH" != 'master' ] || [ "$TRAVIS_PULL_REQUEST" != 'false' ]; then echo "Skipping artifact deployment for a non-release build" exit 0 fi