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 947fb78 commit f2d3281Copy full SHA for f2d3281
Extension/src/LanguageServer/configurations.ts
@@ -234,7 +234,7 @@ export class CppProperties {
234
// Check for vcpkg instance and include relevent paths if found.
235
if (await util.checkFileExists(util.getVcpkgPathDescriptorFile())) {
236
let vcpkgRoot: string = await util.readFileText(util.getVcpkgPathDescriptorFile());
237
- let vcpkgInstallPath: string = path.join(vcpkgRoot.trim(), "/vcpkg/installed");
+ let vcpkgInstallPath: string = path.join(vcpkgRoot.trim(), "/installed");
238
if (await util.checkDirectoryExists(vcpkgInstallPath)) {
239
let list: string[] = await util.readDir(vcpkgInstallPath);
240
// For every *directory* in the list (non-recursive)
0 commit comments