We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6608f9a commit cf894bbCopy full SHA for cf894bb
src/client/terminals/envCollectionActivation/service.ts
@@ -221,10 +221,9 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
221
env.PS1 = await this.getPS1(shell, resource, env);
222
const defaultPrependOptions = await this.getPrependOptions();
223
224
- const deactivate = await this.terminalDeactivateService.getScriptLocation(shell, resource);
225
// Clear any previously set env vars from collection
226
envVarCollection.clear();
227
-
+ const deactivate = await this.terminalDeactivateService.getScriptLocation(shell, resource);
228
Object.keys(env).forEach((key) => {
229
if (shouldSkip(key)) {
230
return;
0 commit comments