Skip to content

Commit

Permalink
bash compat problem?
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdeanmartin committed May 27, 2023
1 parent c45fac6 commit 57097ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def package() -> None:
"""
package, but don't upload
"""
subprocess.run("poetry build")
subprocess.run(["poetry", "build"])


@task()
Expand Down Expand Up @@ -619,7 +619,7 @@ def slow() -> None:
def just_package() -> None:
"""Package, but do no checks or tests at all"""
print("WARNING: This skips all quality checks.")
subprocess.run("poetry build")
subprocess.run(["poetry", "build"])


@task()
Expand Down

0 comments on commit 57097ef

Please sign in to comment.