(advinst: Path, *edit_args: str, check: bool = True)
| 67 | |
| 68 | |
| 69 | def run(advinst: Path, *edit_args: str, check: bool = True) -> int: |
| 70 | cmd = [str(advinst), "/edit", str(INSTALLER_AIP), *edit_args] |
| 71 | print(">", " ".join(cmd)) |
| 72 | return subprocess.run(cmd, check=check).returncode |
| 73 | |
| 74 | |
| 75 | def resync_appdir(advinst: Path) -> None: |
no test coverage detected