Skip to content

Commit

Permalink
Merge pull request google#19 from Koellewe/patch-1
Browse files Browse the repository at this point in the history
Updated autogen.sh with new googletest references
  • Loading branch information
JinsukKim authored Dec 2, 2021
2 parents d613c43 + ec1d3d3 commit 96e566d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 96e566d

Please sign in to comment.