(
cmd: list[str],
cwd: Path | None = None,
)
| 140 | class Tools: |
| 141 | @staticmethod |
| 142 | def run( |
| 143 | cmd: list[str], |
| 144 | cwd: Path | None = None, |
| 145 | ) -> None: |
| 146 | print(f"$ {' '.join(cmd)}") |
| 147 | subprocess.check_call(cmd, cwd=cwd) |
| 148 | |
| 149 | @staticmethod |
| 150 | def create_symlink(dst: Path, src: Path) -> None: |
no test coverage detected