Merge e2383de3a1 into da71eaebd2
This commit is contained in:
commit
f027d51eef
@ -101,6 +101,11 @@ if (!runner) {
|
|||||||
process.stderr.write("Missing UI runner: install pnpm, then retry.\n");
|
process.stderr.write("Missing UI runner: install pnpm, then retry.\n");
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
// On Windows, paths with spaces (e.g. C:\Program Files\...) must be quoted
|
||||||
|
// so the shell does not split them.
|
||||||
|
if (process.platform === "win32" && runner.cmd.includes(" ")) {
|
||||||
|
runner.cmd = `"${runner.cmd}"`;
|
||||||
|
}
|
||||||
|
|
||||||
const script =
|
const script =
|
||||||
action === "install"
|
action === "install"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user