Skip to content

Commit

Permalink
BUG: fix issue when using python setup.py somecommand --force.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
rgommers committed Jun 20, 2017
1 parent 1d9189e commit 20c3c2a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ def setup_package():

if "--force" in sys.argv:
run_build = True
sys.argv.remove('--force')
else:
# Raise errors for unsupported commands, improve help output, etc.
run_build = parse_setuppy_commands()
Expand Down

0 comments on commit 20c3c2a

Please sign in to comment.