Skip to main content

Clean up the output from deploy_to_pypi

ID
0c34c78
date
2025-05-07 13:25:36+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
badab58
message
Clean up the output from `deploy_to_pypi`
changed files
1 file, 2 additions, 1 deletion

Changed files

flickr/deploy_to_pypi (763) → flickr/deploy_to_pypi (761)

diff --git a/flickr/deploy_to_pypi b/flickr/deploy_to_pypi
index 10f08d5..42069c1 100755
--- a/flickr/deploy_to_pypi
+++ b/flickr/deploy_to_pypi
@@ -14,8 +14,9 @@
 set -o errexit
 set -o nounset
 
+rm -rf dist/*
 python3 -m build
-python3 -m twine upload dist/* --username=__token__ --skip-existing
+python3 -m twine upload dist/* --username=__token__
 
 version=$(find src -name __init__.py \
   | xargs grep '__version__ =' \