Support string in TerminalOptions.shellArgs

Fixes #70716
Fixes #70713
This commit is contained in:
Daniel Imms
2019-03-18 15:38:33 -07:00
parent 37cb23d3dd
commit 44c1e0321a
4 changed files with 6 additions and 5 deletions

View File

@@ -106,7 +106,7 @@ export class ExtHostTerminal extends BaseExtHostTerminal implements vscode.Termi
public create(
shellPath?: string,
shellArgs?: string[],
shellArgs?: string[] | string,
cwd?: string | URI,
env?: { [key: string]: string | null },
waitOnExit?: boolean,