Skip to content

Commit a550f03

Browse files
committed
Check PR identifier properly
1 parent ba9e164 commit a550f03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/upload-pypi.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -u
55

66
export UPLOAD_STAGING=
77

8-
if [ "${TRAVIS_PULL_REQUEST}" != "" ]; then
8+
if [ "${TRAVIS_PULL_REQUEST}" = "true" ]; then
99
echo 'Using staging pypi upload for PR'
1010
export UPLOAD_STAGING='yes'
1111
fi

0 commit comments

Comments
 (0)