From 2b2f6ec47783815f085a9322d7e8e78fe5a47bcb Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Fri, 3 Jul 2026 23:31:26 +0200 Subject: [PATCH] Use HTTPS for the vcpkg registries For vcpkg, it is much more common to use HTTPS for public registries. Accessing them via SSH isn't always possible, as it requires a key to be pre-installed. --- .gitmodules | 4 ++-- vcpkg-configuration.json | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index e3d39d1..37da927 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "vendor/github.com/microsoft/vcpkg"] path = vendor/github.com/microsoft/vcpkg - url = https://github.com/microsoft/vcpkg.git + url = https://github.com/microsoft/vcpkg [submodule "vendor/github.com/carbonengine/vcpkg-registry"] path = vendor/github.com/carbonengine/vcpkg-registry - url = git@github.com:carbonengine/vcpkg-registry.git + url = https://github.com/carbonengine/vcpkg-registry diff --git a/vcpkg-configuration.json b/vcpkg-configuration.json index 7902a32..d585327 100644 --- a/vcpkg-configuration.json +++ b/vcpkg-configuration.json @@ -7,9 +7,12 @@ "registries": [ { "kind": "git", - "repository": "git@github.com:carbonengine/vcpkg-registry.git", + "repository": "https://github.com/carbonengine/vcpkg-registry.git", "baseline": "303eacceb8ce9a0aa9a061f00ab2c11e8725ab2d", - "packages": ["ccp-debug-info", "zlib"] + "packages": [ + "ccp-debug-info", + "zlib" + ] } ] -} +} \ No newline at end of file