diff --git a/packages/bootstrap/src/cli.mjs b/packages/bootstrap/src/cli.mjs index 04442d3..21e5f84 100644 --- a/packages/bootstrap/src/cli.mjs +++ b/packages/bootstrap/src/cli.mjs @@ -97,6 +97,7 @@ function forwardChildStream(stream, target) { function spawnMainCommand(command, env) { const [cmd, ...args] = command; const child = spawn(cmd, args, { + cwd: workspaceRoot, env, stdio: 'inherit', shell: process.platform === 'win32',