From 4b191431542a09b1820d7bf6008b55e6f048bcc2 Mon Sep 17 00:00:00 2001 From: Matthew Precious Date: Fri, 29 May 2026 20:54:19 -0400 Subject: [PATCH] libgit2 1.9.4 --- build-deps.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-deps.sh b/build-deps.sh index b08c548..de88c18 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.3.zip > libgit2.zip + curl -L https://github.com/libgit2/libgit2/archive/refs/tags/v1.9.4.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.3/tests/*" + unzip libgit2.zip -x "libgit2-1.9.4/tests/*" rm libgit2.zip - mv libgit2-1.9.3 libgit2 + mv libgit2-1.9.4 libgit2 mkdir -p libgit2/build cmake -S libgit2 -B libgit2/build\ -DUSE_SSH=exec \