Stop italicising some commands

This commit is contained in:
Joscha 2025-08-31 00:11:09 +02:00
parent b7ebc8543c
commit cf7dba568d

View file

@ -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