Skip to content

Commit f2d3281

Browse files
Jim Griesmerbobbrow
authored andcommitted
Slight tweak for what vcpkg will do. (#1897)
1 parent 947fb78 commit f2d3281

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/LanguageServer/configurations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export class CppProperties {
234234
// Check for vcpkg instance and include relevent paths if found.
235235
if (await util.checkFileExists(util.getVcpkgPathDescriptorFile())) {
236236
let vcpkgRoot: string = await util.readFileText(util.getVcpkgPathDescriptorFile());
237-
let vcpkgInstallPath: string = path.join(vcpkgRoot.trim(), "/vcpkg/installed");
237+
let vcpkgInstallPath: string = path.join(vcpkgRoot.trim(), "/installed");
238238
if (await util.checkDirectoryExists(vcpkgInstallPath)) {
239239
let list: string[] = await util.readDir(vcpkgInstallPath);
240240
// For every *directory* in the list (non-recursive)

0 commit comments

Comments
 (0)