From f079788ae54d8cde3c1a48553f7b68d8b0814aaa Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Tue, 11 Aug 2026 20:30:49 +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 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 09033d8..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 + url = https://github.com/carbonengine/vcpkg-registry