~ salmonella-environment-setup (master) eaab27e912d6b7f5d8d56d85da4c77d3fba51347
commit eaab27e912d6b7f5d8d56d85da4c77d3fba51347
Author: Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Sat Dec 3 22:16:33 2022 +0100
Commit: Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Sat Dec 3 22:16:33 2022 +0100
libgit2.sh: Use HTTPS for cloning
Apparently the git protocol is not working anymore.
diff --git a/system-setup/installers/libgit2.sh b/system-setup/installers/libgit2.sh
index da3deba..2a7ceee 100644
--- a/system-setup/installers/libgit2.sh
+++ b/system-setup/installers/libgit2.sh
@@ -1,4 +1,4 @@
-git clone git://github.com/libgit2/libgit2.git
+git clone https://github.com/libgit2/libgit2.git
cd libgit2
git checkout v0.25.0
mkdir build && cd build
Trap