From ec1d3d36f9427052d333c927a676159df28a154d Mon Sep 17 00:00:00 2001 From: Jans George Rautenbach <14095706+Koellewe@users.noreply.github.com> Date: Wed, 1 Dec 2021 10:13:23 +0200 Subject: [PATCH] Updated autogen.sh with new googletest references --- autogen.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index 76b43258..15f9119a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,10 +51,10 @@ if test ! -e gtest; then fi echo "Google Test not present. Fetching from the web..." - curl $curlopts -L -O https://github.com/google/googletest/archive/master.zip - unzip -q master.zip - rm master.zip - mv googletest-master gtest + curl $curlopts -L -o main.zip https://codeload.github.com/google/googletest/zip/refs/heads/main + unzip -q main.zip + rm main.zip + mv googletest-main gtest fi if test -z $(which cmake); then