From 24091f5918f1cb2a9046b1b20e217163f1c9e8da Mon Sep 17 00:00:00 2001 From: mzwiessele Date: Mon, 19 Jun 2017 13:09:49 +0100 Subject: [PATCH] fix: appveyor build failing --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 70b694de..b06770d2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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