Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

exit with an error code if wheel building fails #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions mkwheelhouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,7 @@ def parse_args():
try:
run(args, pip_wheel_args)
except subprocess.CalledProcessError:
print('mkwheelhouse: detected error in subprocess, aborting!',
file=sys.stderr)
sys.exit('mkwheelhouse: detected error in subprocess, aborting!')


def run(args, pip_wheel_args):
Expand Down