Skip to content

Commit

Permalink
Set capture_output to True again
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofer-Julian committed Nov 26, 2024
1 parent 3211f93 commit ddcf179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def commit_push_changes(message: str, branch_name: str) -> None:

def run_command_unchecked(command: list[str]) -> subprocess.CompletedProcess[Any]:
eprint(f'Run command: {" ".join(command)}')
result = subprocess.run(command, text=True)
result = subprocess.run(command, capture_output=True, text=True)
return result


Expand Down

0 comments on commit ddcf179

Please sign in to comment.