Skip to content

Commit

Permalink
fix: preserve VSCODE_BROWSER_CODE_LOADING when launching external ter…
Browse files Browse the repository at this point in the history
…minal

Fixes #128903
Fixes #128977
Refs #128745
  • Loading branch information
deepak1556 committed Jul 24, 2021
1 parent 8313670 commit 13cdef3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,8 @@ export class LinuxExternalTerminalService extends ExternalTerminalService implem

function getSanitizedEnvironment(process: NodeJS.Process) {
const env = process.env;
sanitizeProcessEnvironment(env);
// Refs https://github.com/microsoft/vscode/issues/128745#issuecomment-885981676
sanitizeProcessEnvironment(env, 'VSCODE_BROWSER_CODE_LOADING');
return env;
}

Expand Down

0 comments on commit 13cdef3

Please sign in to comment.