From d0cd94a847044cead5b550205d616c298e6930fd Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 15 Jul 2017 14:12:10 +0100 Subject: [PATCH] travis-deploy: fix equality operator --- travis-ci/travis-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-ci/travis-deploy.sh b/travis-ci/travis-deploy.sh index af7f714..53105fa 100644 --- a/travis-ci/travis-deploy.sh +++ b/travis-ci/travis-deploy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -if [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ]; then +if [ "$TRAVIS_BRANCH" == 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ]; then echo "Preparing to deploy to nexus..." openssl aes-256-cbc -K $encrypted_f424d6efdd6f_key -iv $encrypted_f424d6efdd6f_iv \ -in travis-ci/codesigning.asc.enc -out travis-ci/codesigning.asc -d