( command: string, args?: ReadonlyArray<string> | ExecFileOptions, options?: ExecFileOptions )
| 52 | * @returns The stdout from the command |
| 53 | */ |
| 54 | export function execFileSync( |
| 55 | command: string, |
| 56 | args?: ReadonlyArray<string> | ExecFileOptions, |
| 57 | options?: ExecFileOptions |
| 58 | ) { |
| 59 | const meteorPromise: any = Promise; // TypeScript doesn't recognize "Promise.await" |
| 60 | return meteorPromise.await(execFileAsync(command, args, options)); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * @summary Executes a command asynchronously, returning a promise that will |
no test coverage detected
searching dependent graphs…