Skip to content

Commit

Permalink
fix: pipe only the stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
johnson2427 committed Oct 26, 2024
1 parent fe533ed commit 665f445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion silverback/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def build(generate, path):
result = subprocess.run(
command,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
check=True,
)
Expand Down

0 comments on commit 665f445

Please sign in to comment.