()
| 151 | let appliedLoginShellPath: Promise<void> | undefined; |
| 152 | |
| 153 | export function applyLoginShellPathFromNode(): Promise<void> { |
| 154 | if (appliedLoginShellPath !== undefined) return appliedLoginShellPath; |
| 155 | appliedLoginShellPath = applyLoginShellPath({ |
| 156 | platform: process.platform, |
| 157 | env: process.env as Record<string, string | undefined>, |
| 158 | userShell: userShellFromNode, |
| 159 | execFileText, |
| 160 | }); |
| 161 | return appliedLoginShellPath; |
| 162 | } |
no test coverage detected