We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22c886 commit 51f1933Copy full SHA for 51f1933
nodejs/src/client.ts
@@ -724,7 +724,7 @@ export class CopilotClient {
724
} else if (process.platform === "win32" && !isAbsolutePath) {
725
// On Windows, spawn doesn't search PATHEXT, so use cmd /c to resolve the executable.
726
command = "cmd";
727
- spawnArgs = ["/c", `"${this.options.cliPath}"`, ...args];
+ spawnArgs = ["/c", `${this.options.cliPath}`, ...args];
728
} else {
729
command = this.options.cliPath;
730
spawnArgs = args;
0 commit comments