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

@@ -626,6 +626,9 @@ export class MainThreadTask implements MainThreadTaskShape {
});
});
});
},
getDefaultShellAndArgs: (): Promise<{ shell: string, args: string[] | string | undefined }> => {
return Promise.resolve(this._proxy.$getDefaultShellAndArgs());
}
});
}