Remove stale meson-private/meson.lock before meson setup (see issue #2484).
(build_dir: Path)
| 96 | |
| 97 | |
| 98 | def _cleanup_stale_meson_lockfile(build_dir: Path) -> None: |
| 99 | """Remove stale meson-private/meson.lock before meson setup (see issue #2484).""" |
| 100 | from ci.meson.build_config import cleanup_stale_meson_lockfile |
| 101 | |
| 102 | # Helper logs its own status message; we just call through. |
| 103 | cleanup_stale_meson_lockfile(build_dir) |
| 104 | |
| 105 | |
| 106 | # ============================================================================ |
no test coverage detected