Skip to content

Commit 7842bdf

Browse files
committed
fix: fix vcpkg path
1 parent 97c5763 commit 7842bdf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/setup_cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup_cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/vcpkg/vcpkg.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function setupVcpkg(_version: string, _setupCppDir: string, _arch: string
1313
if (!hasVCPKG || which.sync("vcpkg", { nothrow: true }) === null) {
1414
execa.sync("git", ["clone", "https://github.com/microsoft/vcpkg"], { cwd: untildify("~/") })
1515
const vcpkgDir = untildify("~/vcpkg")
16-
execa.sync(addShellExtension("./vcpkg/bootstrap-vcpkg"), { cwd: vcpkgDir, shell: true })
16+
execa.sync(addShellExtension("./bootstrap-vcpkg"), { cwd: vcpkgDir, shell: true })
1717
addPath(vcpkgDir)
1818
hasVCPKG = true
1919
return { binDir: vcpkgDir }

0 commit comments

Comments
 (0)