From 52ec138300bdf15c7a967b708e6a35b96793337a Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sun, 5 Jul 2026 08:50:03 +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 | 43 ++++++++++++++++++++-------------------- 2 files changed, 24 insertions(+), 23 deletions(-) diff --git a/.gitmodules b/.gitmodules index 3296e62e7..37da9272e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "vendor/github.com/microsoft/vcpkg"] path = vendor/github.com/microsoft/vcpkg - url = git@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 c3cd00cca..99f324bb1 100644 --- a/vcpkg-configuration.json +++ b/vcpkg-configuration.json @@ -7,27 +7,28 @@ "registries": [ { "kind": "git", - "repository": "git@github.com:carbonengine/vcpkg-registry.git", + "repository": "https://github.com/carbonengine/vcpkg-registry.git", "baseline": "a83134805f3fa07da6a6add87c4b250d9778bfd1", - "packages": ["python3", - "carbon-*", - "tracy", - "greenlet", - "ccp-debug-info", - "crashpad", - "zlib", - "re2c", - "amd-fidelityfx", - "amd-fidelityfx-cacao", - "amd-fidelityfx-cas", - "amd-fidelityfx-fsr", - "fxc", - "granny", - "intel-xess", - "nvidia-aftermath", - "nvidia-streamline", - "openvdb" - ] + "packages": [ + "python3", + "carbon-*", + "tracy", + "greenlet", + "ccp-debug-info", + "crashpad", + "zlib", + "re2c", + "amd-fidelityfx", + "amd-fidelityfx-cacao", + "amd-fidelityfx-cas", + "amd-fidelityfx-fsr", + "fxc", + "granny", + "intel-xess", + "nvidia-aftermath", + "nvidia-streamline", + "openvdb" + ] } ] -} +} \ No newline at end of file