From 0a29b30e4ea83e1e420031f13209919584b9c81f Mon Sep 17 00:00:00 2001 From: Richard Meissner Date: Sun, 16 Sep 2018 22:32:31 +0200 Subject: [PATCH] Fix deployment script --- .travis.yml | 2 +- scripts/deploy.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 243dd4c..6c3a69b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 \ No newline at end of file diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 05d012c..c6ec940 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -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/* \ No newline at end of file +twine upload -u "${1}" -p "${2}" dist/* \ No newline at end of file