(userEnvProbe: UserEnvProbe, cacheFolder: string)
| 832 | } |
| 833 | |
| 834 | function getUserEnvCacheFilePath(userEnvProbe: UserEnvProbe, cacheFolder: string): string { |
| 835 | return path.posix.join(cacheFolder, `env-${userEnvProbe}.json`); |
| 836 | } |
| 837 | |
| 838 | async function runUserEnvProbe(userEnvProbe: UserEnvProbe, params: { allowSystemConfigChange: boolean; output: Log }, containerProperties: { shell: string; remoteExec: ExecFunction; installFolder?: string; env?: NodeJS.ProcessEnv; shellServer?: ShellServer; launchRootShellServer?: (() => Promise<ShellServer>); user?: string }, cmd: string, sep: string) { |
| 839 | if (userEnvProbe === 'none') { |
no outgoing calls
no test coverage detected