Skip to content
Snippets Groups Projects
Commit 31491fe1 authored by Ian Bell's avatar Ian Bell
Browse files

Better error message in buildwheels

parent d8f40459
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ def upload(): ...@@ -44,7 +44,7 @@ def upload():
steps = ['build','upload'] steps = ['build','upload']
if not any([k in sys.argv for k in steps]): if not any([k in sys.argv for k in steps]):
raise ValueError("need to pass at least one step to do: '+str(steps)") raise ValueError("need to pass at least one step to do: "+str(steps))
if 'build' in sys.argv: if 'build' in sys.argv:
build() build()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment