Skip to content

Commit

Permalink
Merge pull request #4 from rmeissner/fix_deploy
Browse files Browse the repository at this point in the history
Fix param escaping for deployment script
  • Loading branch information
rmeissner authored Sep 16, 2018
2 parents 4b123db + 0a29b30 commit 86078e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ script:
- python -m unittest
deploy:
provider: script
script: bash scripts/deploy.sh $PYPI_USER $PYPI_PASS
script: bash scripts/deploy.sh "${PYPI_USER}" "${PYPI_PASS}"
skip_cleanup: true
on:
tags: true
2 changes: 1 addition & 1 deletion scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ python -m pip install --upgrade setuptools wheel
python -m pip install --upgrade twine

python setup.py sdist bdist_wheel
twine upload -u $1 -p "${2}" dist/*
twine upload -u "${1}" -p "${2}" dist/*

0 comments on commit 86078e6

Please sign in to comment.