Skip to content

Commit 3513a0c

Browse files
committed
Add VSCODE_PROXY_URI to terminal environment
I also moved VSCODE_IPC_HOOK_CLI (although it's always undefined right now anyway) to match since we want both of these to always be set.
1 parent e337741 commit 3513a0c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/vscode/src/vs/server/channel.ts

+3
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,9 @@ export class TerminalProviderChannel implements IServerChannel<RemoteAgentConnec
516516
await getEnvironment()
517517
);
518518

519+
env.VSCODE_PROXY_URI = args.resolverEnv?.VSCODE_PROXY_URI || process.env.VSCODE_PROXY_URI;
520+
env.VSCODE_IPC_HOOK_CLI = process.env.VSCODE_IPC_HOOK_CLI;
521+
519522
// Apply extension environment variable collections to the environment.
520523
if (!shellLaunchConfig.strictEnv) {
521524
// They come in an array and in serialized format.

0 commit comments

Comments
 (0)