(command, args, options = {})
| 96 | } |
| 97 | |
| 98 | async function run(command, args, options = {}) { |
| 99 | return execFileAsync(command, args, { cwd: REPO_ROOT, maxBuffer: 16 * 1024 * 1024, ...options }); |
| 100 | } |
| 101 | |
| 102 | function spawnDetached(command, args, { logName, env, cwd }) { |
| 103 | // Redirect stdio to a log file — inheriting it would keep the parent's |
no outgoing calls
no test coverage detected