From 1d0e3e8f27dfa1b499fb0ecfe2f895bb704cbf28 Mon Sep 17 00:00:00 2001 From: Matthew Precious Date: Tue, 31 Mar 2026 21:09:33 -0400 Subject: [PATCH] libgit2 1.9.2 --- build-deps.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-deps.sh b/build-deps.sh index ef64c5ef..e0db9425 100755 --- a/build-deps.sh +++ b/build-deps.sh @@ -86,12 +86,12 @@ function build() { make -j$CMAKE_BUILD_PARALLEL_LEVEL install popd - curl -L https://github.com/libgit2/libgit2/archive/refs/tags/v1.9.1.zip > libgit2.zip + curl -L https://github.com/libgit2/libgit2/archive/refs/tags/v1.9.2.zip > libgit2.zip # unzip can't handle the encoding of one of the test files/folders and tar won't extract zip files # on ubuntu. - unzip libgit2.zip -x "libgit2-1.9.1/tests/*" + unzip libgit2.zip -x "libgit2-1.9.2/tests/*" rm libgit2.zip - mv libgit2-1.9.1 libgit2 + mv libgit2-1.9.2 libgit2 mkdir -p libgit2/build cmake -S libgit2 -B libgit2/build\ -DUSE_SSH=exec \