Skip to content

Commit 9b70256

Browse files
authored
fix: disable autostart on ssh command (#453)
1 parent fbf9a07 commit 9b70256

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/remote.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ export class Remote {
627627
const proxyCommand = featureSet.wildcardSSH
628628
? `${escape(binaryPath)}${headerArg} --global-config ${escape(
629629
path.dirname(this.storage.getSessionTokenPath(label)),
630-
)} ssh --stdio --usage-app=vscode --network-info-dir ${escape(this.storage.getNetworkInfoPath())}${await this.formatLogArg(logDir)} --ssh-host-prefix ${hostPrefix} %h`
630+
)} ssh --stdio --usage-app=vscode --disable-autostart --network-info-dir ${escape(this.storage.getNetworkInfoPath())}${await this.formatLogArg(logDir)} --ssh-host-prefix ${hostPrefix} %h`
631631
: `${escape(binaryPath)}${headerArg} vscodessh --network-info-dir ${escape(
632632
this.storage.getNetworkInfoPath(),
633633
)}${await this.formatLogArg(logDir)} --session-token-file ${escape(this.storage.getSessionTokenPath(label))} --url-file ${escape(

0 commit comments

Comments
 (0)