(targetPath: string)
| 762 | } |
| 763 | |
| 764 | private async pathExists(targetPath: string): Promise<boolean> { |
| 765 | return fs.access(targetPath).then(() => true).catch(() => false); |
| 766 | } |
| 767 | |
| 768 | private async isManagedWorktreePath(targetPath: string): Promise<boolean> { |
| 769 | const [basePath, normalizedTargetPath] = await Promise.all([ |