(cmd: string, ...args: string[])
| 302 | } |
| 303 | |
| 304 | export function silentExec(cmd: string, ...args: string[]) { |
| 305 | return _exec({ silent: true }, cmd, args); |
| 306 | } |
| 307 | |
| 308 | export function execWithEnv(cmd: string, args: string[], env: NodeJS.ProcessEnv, stdin?: string) { |
| 309 | return _exec({ env, stdin }, cmd, args); |
no test coverage detected