mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 10:08:49 +01:00
remove workaround for #87088
This commit is contained in:
@@ -87,22 +87,7 @@ export class ExtHostDebugService extends ExtHostDebugServiceBase {
|
||||
}
|
||||
|
||||
const configProvider = await this._configurationService.getConfigProvider();
|
||||
const terminalConfig = configProvider.getConfiguration('terminal');
|
||||
|
||||
let shell;
|
||||
const automationShellConfig = terminalConfig.integrated.automationShell;
|
||||
if (automationShellConfig) {
|
||||
if (env.isWindows) {
|
||||
shell = automationShellConfig.windows;
|
||||
} else if (env.isLinux) {
|
||||
shell = automationShellConfig.linux;
|
||||
} else if (env.isMacintosh) {
|
||||
shell = automationShellConfig.osx;
|
||||
}
|
||||
}
|
||||
if (!shell) {
|
||||
shell = this._terminalService.getDefaultShell(true, configProvider);
|
||||
}
|
||||
const shell = this._terminalService.getDefaultShell(true, configProvider);
|
||||
|
||||
if (needNewTerminal || !this._integratedTerminalInstance) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user