MCPcopy
hub / github.com/meteor/meteor / execFileSync

Function execFileSync

tools/utils/processes.ts:54–61  ·  view source on GitHub ↗
(
  command: string,
  args?: ReadonlyArray<string> | ExecFileOptions,
  options?: ExecFileOptions
)

Source from the content-addressed store, hash-verified

52 * @returns The stdout from the command
53 */
54export 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

Callers 5

openXcodeProjectFunction · 0.90
_killProcessMethod · 0.90
_getBrowserStackKeyMethod · 0.90
getCordovaPluginsListFunction · 0.90

Calls 1

execFileAsyncFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…