Skip to content

Commit

Permalink
Fix cp.spawn flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanp413 committed Sep 30, 2023
1 parent 0109b22 commit 539d9d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/authResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export class RemoteSSHResolver implements vscode.RemoteAuthorityResolver, vscode

this.logger.trace(`Spawning ProxyCommand: ${proxyCommand} ${proxyArgs.join(' ')}`);

const child = cp.spawn(proxyCommand, proxyArgs);
const child = cp.spawn(proxyCommand, proxyArgs, { windowsHide: true, windowsVerbatimArguments: true });
proxyStream = stream.Duplex.from({ readable: child.stdout, writable: child.stdin });
this.proxyCommandProcess = child;
}
Expand Down

0 comments on commit 539d9d4

Please sign in to comment.