mirror of https://github.com/aminya/setup-cpp
fix: remove ./ for cmd
This commit is contained in:
parent
7842bdf483
commit
16fc84f503
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@ export function setupVcpkg(_version: string, _setupCppDir: string, _arch: string
|
||||||
if (!hasVCPKG || which.sync("vcpkg", { nothrow: true }) === null) {
|
if (!hasVCPKG || which.sync("vcpkg", { nothrow: true }) === null) {
|
||||||
execa.sync("git", ["clone", "https://github.com/microsoft/vcpkg"], { cwd: untildify("~/") })
|
execa.sync("git", ["clone", "https://github.com/microsoft/vcpkg"], { cwd: untildify("~/") })
|
||||||
const vcpkgDir = untildify("~/vcpkg")
|
const vcpkgDir = untildify("~/vcpkg")
|
||||||
execa.sync(addShellExtension("./bootstrap-vcpkg"), { cwd: vcpkgDir, shell: true })
|
execa.sync(addShellExtension("bootstrap-vcpkg"), { cwd: vcpkgDir, shell: true })
|
||||||
addPath(vcpkgDir)
|
addPath(vcpkgDir)
|
||||||
hasVCPKG = true
|
hasVCPKG = true
|
||||||
return { binDir: vcpkgDir }
|
return { binDir: vcpkgDir }
|
||||||
|
|
Loading…
Reference in New Issue