Skip to content

Commit

Permalink
Merge branch 'master' into add-checkout-strategy-to-report
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Jun 11, 2024
2 parents 3697e98 + b4152d8 commit 7db6669
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nixpkgs_review/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import functools
import os
import shlex
import shutil
import subprocess
import sys
Expand Down Expand Up @@ -29,7 +30,7 @@ def wrapper(text: str) -> None:
def sh(
command: list[str], cwd: Path | str | None = None
) -> "subprocess.CompletedProcess[str]":
info("$ " + " ".join(command))
info("$ " + shlex.join(command))
return subprocess.run(command, cwd=cwd, text=True)


Expand Down

0 comments on commit 7db6669

Please sign in to comment.