Skip to content

Commit ddcf179

Browse files
committed
Set capture_output to True again
1 parent 3211f93 commit ddcf179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def commit_push_changes(message: str, branch_name: str) -> None:
5050

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

5656

0 commit comments

Comments
 (0)