(commandString: string)
| 198 | }, |
| 199 | |
| 200 | getSpawnArgs(commandString: string): string[] { |
| 201 | const skipLoginShell = lastSnapshotFilePath !== undefined |
| 202 | if (skipLoginShell) { |
| 203 | logForDebugging('Spawning shell without login (-l flag skipped)') |
| 204 | } |
| 205 | return ['-c', ...(skipLoginShell ? [] : ['-l']), commandString] |
| 206 | }, |
| 207 | |
| 208 | async getEnvironmentOverrides( |
| 209 | command: string, |
nothing calls this directly
no test coverage detected