diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 62de40c..0b541e1 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -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)