1
0
mirror of https://github.com/FreeOpcUa/opcua-asyncio synced 2025-10-29 17:07:18 +08:00

empty dist not sdist in release script

This commit is contained in:
oroulet 2018-03-02 11:13:40 +01:00 committed by Christian Bergmiller
parent 40dc3dc550
commit 1762722c5b

View File

@ -32,7 +32,7 @@ def release():
os.system("git push --tags")
ans = input("upload to pip?(Y/n)")
if ans in ("", "y", "yes"):
os.system("rm -rf sdist/*")
os.system("rm -rf dist/*")
os.system("python setup.py sdist")
os.system("twine upload dist/*")