(backupPath: string)
| 5 | import { execFileNoThrow } from './execFileNoThrow.js' |
| 6 | import { logError } from './log.js' |
| 7 | export function markTerminalSetupInProgress(backupPath: string): void { |
| 8 | saveGlobalConfig(current => ({ |
| 9 | ...current, |
| 10 | appleTerminalSetupInProgress: true, |
| 11 | appleTerminalBackupPath: backupPath, |
| 12 | })) |
| 13 | } |
| 14 | |
| 15 | export function markTerminalSetupComplete(): void { |
| 16 | saveGlobalConfig(current => ({ |
no test coverage detected