From d51ee9e0d67d41f86c0d21d825c3075b6767b89f Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Mon, 26 Aug 2024 23:28:52 +0300 Subject: [PATCH] bytebeat_compiler.py: reformat command printing --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 53e41fc..48444ce 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -89,7 +89,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)