Path to the per-repo advisory sandbox lock.
(repoRoot: string)
| 91 | |
| 92 | /** Path to the per-repo advisory sandbox lock. */ |
| 93 | function sandboxLockPath(repoRoot: string): string { |
| 94 | return path.join(repoRoot, '.qodex', 'sandbox.lock'); |
| 95 | } |
| 96 | |
| 97 | /** Path to the per-repo recovery record. */ |
| 98 | function recoveryRecordPath(repoRoot: string): string { |