()
| 12 | } |
| 13 | |
| 14 | function getIterm2RecoveryInfo(): { |
| 15 | inProgress: boolean |
| 16 | backupPath: string | null |
| 17 | } { |
| 18 | const config = getGlobalConfig() |
| 19 | return { |
| 20 | inProgress: config.iterm2SetupInProgress ?? false, |
| 21 | backupPath: config.iterm2BackupPath || null, |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | function getITerm2PlistPath(): string { |
| 26 | return join( |
no test coverage detected