From bad69d1f52a7831477b8eba9af010355b009e13f Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Tue, 11 Aug 2026 20:30:47 +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 | 13 +++++++++++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index 3296e62..37da927 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 ef7cdf2..c71f94e 100644 --- a/vcpkg-configuration.json +++ b/vcpkg-configuration.json @@ -7,9 +7,18 @@ "registries": [ { "kind": "git", - "repository": "git@github.com:carbonengine/vcpkg-registry.git", + "repository": "https://github.com/carbonengine/vcpkg-registry.git", "baseline": "06d8dfea23ad729869bc21271e27aeed8b328f53", - "packages": ["carbon-*", "greenlet", "python3", "ccp-debug-info", "tracy", "zlib", "crashpad", "msoledbsql"] + "packages": [ + "carbon-*", + "greenlet", + "python3", + "ccp-debug-info", + "tracy", + "zlib", + "crashpad", + "msoledbsql" + ] } ] }