(cmd: string, ...args: string[])
| 298 | } |
| 299 | |
| 300 | export function exec(cmd: string, ...args: string[]) { |
| 301 | return _exec({}, cmd, args); |
| 302 | } |
| 303 | |
| 304 | export function silentExec(cmd: string, ...args: string[]) { |
| 305 | return _exec({ silent: true }, cmd, args); |
no test coverage detected