Commit 9dd97a0e by Xavier Ordoquy

Fixed a typo.

parent 75ff7545
...@@ -48,7 +48,7 @@ if sys.argv[-1] == 'publish': ...@@ -48,7 +48,7 @@ if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"): if os.system("pip freeze | grep wheel"):
print("wheel not installed.\nUse `pip install wheel`.\nExiting.") print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
sys.exit() sys.exit()
if os.system("pip freeze | grep twine") if os.system("pip freeze | grep twine"):
print("twine not installed.\nUse `pip install twine`.\nExiting.") print("twine not installed.\nUse `pip install twine`.\nExiting.")
sys.exit() sys.exit()
os.system("python setup.py sdist bdist_wheel") os.system("python setup.py sdist bdist_wheel")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment