Go to ext host for system default shell and args for tasks

Fixes https://github.com/microsoft/vscode-remote-release/issues/1203
This commit is contained in:
Alex Ross
2019-09-05 14:59:08 +02:00
parent d0898d57d4
commit ca4c1bf7a0
5 changed files with 11 additions and 2 deletions

View File

@@ -659,6 +659,10 @@ export class ExtHostTask implements ExtHostTaskShape {
return result;
}
public $getDefaultShellAndArgs(): Promise<{ shell: string, args: string[] | string | undefined }> {
return this._terminalService.$requestDefaultShellAndArgs(true);
}
private nextHandle(): number {
return this._handleCounter++;
}