(cmd: List[str], cwd: Path, env: Dict[str, str] = os.environ)
| 122 | |
| 123 | |
| 124 | def execute_command(cmd: List[str], cwd: Path, env: Dict[str, str] = os.environ): |
| 125 | logging.info(f"Running Command: {cwd.as_posix()}: {' '.join(cmd)}") |
| 126 | check_call(cmd, cwd=cwd.as_posix(), env=env) |