Per-artifact lock guarding the manifest read-modify-write.
(cwd: string, id: string)
| 131 | } |
| 132 | /** Per-artifact lock guarding the manifest read-modify-write. */ |
| 133 | function manifestLockPath(cwd: string, id: string): string { |
| 134 | return path.join(artifactDir(cwd, id), '.manifest.lock'); |
| 135 | } |
| 136 | |
| 137 | // ── I/O operations (writes go through WriteFn) ──────────────────────────────── |
| 138 |
no test coverage detected