1
0

bytebeat_compiler.py: reformat command printing

This commit is contained in:
Intel A80486DX2-66 2024-08-26 23:28:52 +03:00
parent 0b0a6a4e0b
commit c043d0ce94
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -88,7 +88,7 @@ def substitute_vars(replacements: Dict[str, Union[bool, str]], text: str,
return text
def run_command(*command: list[str]) -> None:
print(command_line_join(command), flush=True)
print("[>]", command_line_join(command), flush=True)
if subprocess.run(command).returncode != EXIT_SUCCESS:
raise SystemExit(EXIT_FAILURE)