diff --git a/script/publish b/script/publish index 8b18797..441d2ca 100755 --- a/script/publish +++ b/script/publish @@ -1,10 +1,12 @@ #!/bin/bash if which python3 > /dev/null; then py=python3 else py=python fi $py setup.py sdist bdist_wheel -twine upload dist/* +for file in dist/*; do + twine upload $file +done