Skip to content

Commit 433cd34

Browse files
author
Magesh Chandramouli
committed
fixing skip condition
1 parent 4f599b7 commit 433cd34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
cd `dirname $0`/..
33

4-
if [ "$TRAVIS_BRANCH" != 'master' ] || [ "$TRAVIS_PULL_REQUEST" == 'true' ]; then
4+
if [ "$TRAVIS_BRANCH" != 'master' ] || [ "$TRAVIS_PULL_REQUEST" != 'false' ]; then
55
echo "Skipping artifact deployment for a non-release build"
66
exit 0
77
fi

0 commit comments

Comments
 (0)