rename run_no_output to run_no_stdout

we want stderr for some nix commands.
This commit is contained in:
Jörg Thalheim
2024-12-03 17:14:27 +01:00
parent 8837af2c79
commit 51526aedbb
13 changed files with 32 additions and 32 deletions

View File

@@ -338,12 +338,12 @@ def run(
return cmd_out
def run_no_output(
def run_no_stdout(
cmd: list[str],
*,
env: dict[str, str] | None = None,
cwd: Path | None = None,
log: Log = Log.NONE,
log: Log = Log.STDERR,
prefix: str | None = None,
check: bool = True,
error_msg: str | None = None,