Fix Docker path quoting and VSCode terminal env
This commit is contained in:
@@ -13,7 +13,7 @@ async function run(command: string, args: string[], stdio: "ignore" | "inherit"
|
||||
const child = spawn(command, args, {
|
||||
stdio: ["ignore", stdio, "inherit"],
|
||||
windowsHide: true,
|
||||
shell: process.platform === "win32",
|
||||
shell: process.platform === "win32" && !path.isAbsolute(command),
|
||||
});
|
||||
|
||||
child.on("error", (error) => {
|
||||
|
||||
Reference in New Issue
Block a user