MCPcopy
hub / github.com/di-sukharev/opencommit / spawnSync

Function spawnSync

out/cli.cjs:1484–1489  ·  view source on GitHub ↗
(command, args, options)

Source from the content-addressed store, hash-verified

1482 return spawned;
1483 }
1484 function spawnSync(command, args, options) {
1485 const parsed = parse(command, args, options);
1486 const result = cp.spawnSync(parsed.command, parsed.args, parsed.options);
1487 result.error = result.error || enoent.verifyENOENTSync(result.status, parsed);
1488 return result;
1489 }
1490 module2.exports = spawn;
1491 module2.exports.spawn = spawn;
1492 module2.exports.sync = spawnSync;

Callers

nothing calls this directly

Calls 1

parseFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…