From 9ab6ef877a34b29704fc436abc3a1c4046ba50b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Touraine?= Date: Wed, 3 Feb 2021 16:54:22 +0100 Subject: [PATCH] fix: update catch.hpp link to fix broken link due to Catch2 repository branches evolution (#108) --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f9cad06..d83c504 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -4,7 +4,7 @@ # download catch if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/catch.hpp) - file(DOWNLOAD https://raw.githubusercontent.com/catchorg/Catch2/master/single_include/catch2/catch.hpp + file(DOWNLOAD https://raw.githubusercontent.com/catchorg/Catch2/v2.x/single_include/catch2/catch.hpp ${CMAKE_CURRENT_BINARY_DIR}/catch.hpp) endif()