mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
Fix default shell args for debugging
Fixes #124116 Co-Authored-By: Megan Rogge <meganrogge@microsoft.com>
This commit is contained in:
@@ -350,7 +350,7 @@ export abstract class BaseExtHostTerminalService extends Disposable implements I
|
||||
|
||||
public getDefaultShellArgs(useAutomationShell: boolean): string[] | string {
|
||||
const profile = useAutomationShell ? this._defaultAutomationProfile : this._defaultProfile;
|
||||
return profile?.args || [''];
|
||||
return profile?.args || [];
|
||||
}
|
||||
|
||||
public createExtensionTerminal(options: vscode.ExtensionTerminalOptions): vscode.Terminal {
|
||||
|
||||
Reference in New Issue
Block a user