Fix Docker path quoting and VSCode terminal env
This commit is contained in:
@@ -14,7 +14,7 @@ async function run(command: string, args: string[], cwd = process.cwd()): Promis
|
||||
cwd,
|
||||
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