Force inheritEnv in ext debug terminals

Fixes #124041
This commit is contained in:
Daniel Imms
2021-05-25 04:55:02 -07:00
parent 0685a4af28
commit 43b7187c3d
5 changed files with 24 additions and 11 deletions

View File

@@ -98,7 +98,10 @@ export class ExtHostDebugService extends ExtHostDebugServiceBase {
name: args.title || nls.localize('debug.terminal.title', "debuggee"),
};
giveShellTimeToInitialize = true;
terminal = this._terminalService.createTerminalFromOptions(options, true);
terminal = this._terminalService.createTerminalFromOptions(options, {
isFeatureTerminal: true,
useShellEnvironment: true
});
this._integratedTerminalInstances.insert(terminal, shellConfig);
} else {