We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1beb821 commit d910a14Copy full SHA for d910a14
src/tools/live-utils/start-session.ts
@@ -140,6 +140,7 @@ function openBrowser(launchUrl: string): void {
140
const child = childProcess.spawn(command[0], command.slice(1), {
141
stdio: "ignore",
142
detached: true,
143
+ ...(process.platform === "win32" ? { shell: true } : {}),
144
});
145
child.on("error", (err) =>
146
logger.error(`Failed to open browser: ${err}. URL: ${launchUrl}`),
0 commit comments