Skip to content

Commit

Permalink
Fix before_deploy condtition in Bash
Browse files Browse the repository at this point in the history
  • Loading branch information
vshlapakov committed Jun 6, 2018
1 parent 7ee41c2 commit b219b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -60,7 +60,7 @@ after_success:
- codecov

before_deploy:
- if [ $TOX_ENV == freeze ] || [ $TRAVIS_OS_NAME == osx -a $TOX_ENV == py35 ] ; then tar -czf dist_bin/shub-${TRAVIS_TAG}-${TRAVIS_OS_NAME}-x64.tar.gz -C dist_bin shub; fi
- if [ $TOX_ENV == freeze ] || [[ $TRAVIS_OS_NAME == osx && $TOX_ENV == py35 ]] ; then tar -czf dist_bin/shub-${TRAVIS_TAG}-${TRAVIS_OS_NAME}-x64.tar.gz -C dist_bin shub; fi

deploy:
- provider: pypi
Expand Down

0 comments on commit b219b3e

Please sign in to comment.