]> git.phdru.name Git - cookiecutter.git/commitdiff
Build(release): Skip exiting files at PyPI
authorOleg Broytman <phd@phdru.name>
Sat, 2 Feb 2019 20:36:59 +0000 (23:36 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 2 Feb 2019 20:36:59 +0000 (23:36 +0300)
project_template/devscripts/release

index 3fe6abea318e94fb61fdd5bdd54736a0ff846586..e800c4596150d87c7447bbbeb10021b1da853b3e 100755 (executable)
@@ -12,5 +12,5 @@ python setup.py sdist &&
 find build -name '*.py[co]' -delete &&
 python setup.py bdist_wheel --universal &&
 
-twine upload dist/* &&
+twine upload --skip-existing dist/* &&
 exec rm -rf build dist *.egg-info