From 171dc446c420f7590118e94b465d4e7adfd7af59 Mon Sep 17 00:00:00 2001 From: mzwiessele Date: Tue, 16 Aug 2016 12:07:17 +0100 Subject: [PATCH] [appveyor] warning on existing whls --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f7f7b7ab..fb35b745 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -71,10 +71,10 @@ deploy_script: - echo password:%pip_access% >> %USERPROFILE%\\.pypirc - ps: >- if ($env:APPVEYOR_REPO_BRANCH -eq 'devel') { - twine upload -r test dist/* + twine upload --exists warning -r test dist/* } elseif ($env:APPVEYOR_REPO_BRANCH -eq 'deploy') { - twine upload dist/* + twine upload --exists warning dist/* } else { echo not deploying on other branches