From 05f54bc8c7db2d81b8fed95c835d70d52db6717f Mon Sep 17 00:00:00 2001 From: Tara Date: Sat, 4 Jan 2020 20:00:32 -0700 Subject: [PATCH] Fix generating cmake vcpkg throws an error when running cmake about a public key error. This resolves the possibility of the error showing up. --- hifi_vcpkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hifi_vcpkg.py b/hifi_vcpkg.py index 94cac9afa2..f0e8840621 100644 --- a/hifi_vcpkg.py +++ b/hifi_vcpkg.py @@ -164,7 +164,7 @@ endif() if downloadVcpkg: if "HIFI_VCPKG_BOOTSTRAP" in os.environ: 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") hifi_utils.executeSubprocess([self.bootstrapCmd], folder=self.path) else: