fix: appveyor build failing

This commit is contained in:
mzwiessele 2017-06-19 13:09:49 +01:00
parent 1cf6da080c
commit 24091f5918

View file

@ -73,10 +73,10 @@ deploy_script:
- echo password = %pip_access% >> %USERPROFILE%\\.pypirc
- ps: >-
if ($env:APPVEYOR_REPO_BRANCH -eq 'devel') {
twine upload --skip-existing -r test "dist/*"
twine upload --skip-existing -r test dist/*
}
elseif ($env:APPVEYOR_REPO_BRANCH -eq 'deploy') {
twine upload --skip-existing "dist/*"
twine upload --skip-existing dist/*
}
else {
echo not deploying on other branches