Skip to content

Commit 51f1933

Browse files
authored
Update client.ts (github#56)
Fixes github#51
1 parent a22c886 commit 51f1933

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodejs/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ export class CopilotClient {
724724
} else if (process.platform === "win32" && !isAbsolutePath) {
725725
// On Windows, spawn doesn't search PATHEXT, so use cmd /c to resolve the executable.
726726
command = "cmd";
727-
spawnArgs = ["/c", `"${this.options.cliPath}"`, ...args];
727+
spawnArgs = ["/c", `${this.options.cliPath}`, ...args];
728728
} else {
729729
command = this.options.cliPath;
730730
spawnArgs = args;

0 commit comments

Comments
 (0)