We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d479d79 commit e61c360Copy full SHA for e61c360
Extension/src/LanguageServer/extension.ts
@@ -311,7 +311,7 @@ export async function getBuildTasks(returnCompilerPath: boolean): Promise<vscode
311
knownCompilerPaths = knownCompilers.map<string>(info => info.path);
312
}
313
314
- if (!knownCompilerPaths || !userCompilerPath) {
+ if (!knownCompilerPaths && !userCompilerPath) {
315
// Don't prompt a message yet until we can make a data-based decision.
316
telemetry.logLanguageServerEvent('noCompilerFound');
317
// Display a message prompting the user to install compilers if none were found.
0 commit comments