We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8279cc7 commit da1d565Copy full SHA for da1d565
1 file changed
src/vs/workbench/contrib/terminal/node/terminal.ts
@@ -125,7 +125,7 @@ async function detectAvailableWindowsShells(): Promise<IShellDefinition[]> {
125
// `${process.env['HOMEDRIVE']}\\cygwin\\bin\\bash.exe`
126
// ]
127
};
128
- const promises: PromiseLike<IShellDefinition | undefined>[] = [];
+ const promises: Promise<IShellDefinition | undefined>[] = [];
129
Object.keys(expectedLocations).forEach(key => promises.push(validateShellPaths(key, expectedLocations[key])));
130
const shells = await Promise.all(promises);
131
return coalesce(shells);
0 commit comments