(cmd: string, args: string[], env: NodeJS.ProcessEnv, stdin?: string)
| 306 | } |
| 307 | |
| 308 | export function execWithEnv(cmd: string, args: string[], env: NodeJS.ProcessEnv, stdin?: string) { |
| 309 | return _exec({ env, stdin }, cmd, args); |
| 310 | } |
| 311 | |
| 312 | export async function execAndCaptureError( |
| 313 | cmd: string, |
no test coverage detected