()
| 67 | |
| 68 | |
| 69 | def get_podman_path() -> Path | None: |
| 70 | podman_bin = "podman" |
| 71 | if platform.system() == "Linux": |
| 72 | return None # Use default Podman location |
| 73 | elif platform.system() == "Windows": |
| 74 | podman_bin += ".exe" |
| 75 | return get_resource_path("vendor") / "podman" / podman_bin |
| 76 | |
| 77 | |
| 78 | def make_seccomp_json_accessible() -> Path | PurePosixPath: |
no test coverage detected