()
| 53 | * repeat it. The environment a desktop app runs in does not change under it. |
| 54 | */ |
| 55 | export function defaultShellPlan(): ShellPlan { |
| 56 | cachedDefault ??= detectShell(); |
| 57 | return cachedDefault; |
| 58 | } |
| 59 | |
| 60 | let cachedDefault: ShellPlan | undefined; |
| 61 |