Await newly promisified func

This commit is contained in:
Asher 2021-03-01 16:39:57 -06:00
parent a83c909b16
commit 058e781b3f
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 1 additions and 1 deletions

View File

@ -733,7 +733,7 @@ export class TerminalProviderChannel implements IServerChannel<RemoteAgentConnec
// longer undefined. // longer undefined.
const resolvedShellLaunchConfig = { const resolvedShellLaunchConfig = {
...shellLaunchConfig, ...shellLaunchConfig,
...getDefaultShellAndArgs(), ...(await getDefaultShellAndArgs()),
cwd: getInitialCwd(), cwd: getInitialCwd(),
}; };