Skip to content

Commit

Permalink
Check call
Browse files Browse the repository at this point in the history
  • Loading branch information
bneijt committed Apr 12, 2021
1 parent d8f142d commit 17673ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry_lock_package/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def run(should_create_tests: bool, run_poetry_build_wheel: bool) -> None:
lock_project_path = create_or_update(project, should_create_tests)
if run_poetry_build_wheel:
os.chdir(lock_project_path)
subprocess.call(["poetry", "build", "--format", "wheel"])
subprocess.check_call(["poetry", "build", "--format", "wheel"])


def create_or_update(project, should_create_tests: bool) -> str:
Expand Down

0 comments on commit 17673ca

Please sign in to comment.