mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 18:06:57 +02:00
Fix generating cmake
vcpkg throws an error when running cmake about a public key error. This resolves the possibility of the error showing up.
This commit is contained in:
parent
d872e9f07d
commit
05f54bc8c7
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ endif()
|
||||||
if downloadVcpkg:
|
if downloadVcpkg:
|
||||||
if "HIFI_VCPKG_BOOTSTRAP" in os.environ:
|
if "HIFI_VCPKG_BOOTSTRAP" in os.environ:
|
||||||
print("Cloning vcpkg from github to {}".format(self.path))
|
print("Cloning vcpkg from github to {}".format(self.path))
|
||||||
hifi_utils.executeSubprocess(['git', 'clone', 'git@github.com:microsoft/vcpkg.git', self.path])
|
hifi_utils.executeSubprocess(['git', 'clone', 'https://github.com/microsoft/vcpkg', self.path])
|
||||||
print("Bootstrapping vcpkg")
|
print("Bootstrapping vcpkg")
|
||||||
hifi_utils.executeSubprocess([self.bootstrapCmd], folder=self.path)
|
hifi_utils.executeSubprocess([self.bootstrapCmd], folder=self.path)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue