Path to the per-repo recovery record.
(repoRoot: string)
| 96 | |
| 97 | /** Path to the per-repo recovery record. */ |
| 98 | function recoveryRecordPath(repoRoot: string): string { |
| 99 | return path.join(repoRoot, '.qodex', 'sandbox-recovery.json'); |
| 100 | } |
| 101 | |
| 102 | export class GitSandbox { |
| 103 | private state: SandboxState | null = null; |
no outgoing calls
no test coverage detected