(args, env)
| 42 | } |
| 43 | |
| 44 | function spawnNext(args, env) { |
| 45 | return spawn(process.execPath, [nextBin, ...args], { |
| 46 | stdio: ['ignore', 'inherit', 'inherit'], |
| 47 | env, |
| 48 | }); |
| 49 | } |
| 50 | |
| 51 | function getUnexpectedExitCode(code) { |
| 52 | if (typeof code === 'number' && code !== 0) { |