diff --git a/pasch/cmd.py b/pasch/cmd.py index 8b8decc..e981cd5 100644 --- a/pasch/cmd.py +++ b/pasch/cmd.py @@ -11,6 +11,6 @@ def run_execute(*cmd: str) -> None: def run_capture(*cmd: str) -> str: - print(f"[bright_black italic]$ {escape(shlex.join(cmd))}") + print(f"[bright_black]$ {escape(shlex.join(cmd))}") result = subprocess.run(cmd, check=True, capture_output=True, encoding="utf-8") return result.stdout