From: Johannes Schindelin Date: Mon, 25 Sep 2023 11:20:34 +0000 (+0000) Subject: cmake: fix typo in variable name X-Git-Tag: v2.44.0-rc0~155^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5bd7fb49afbe315c08102fea3536823068fad46d;p=thirdparty%2Fgit.git cmake: fix typo in variable name Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/contrib/buildsystems/CMakeLists.txt b/contrib/buildsystems/CMakeLists.txt index ffeca1a53f..54bdf5f3fe 100644 --- a/contrib/buildsystems/CMakeLists.txt +++ b/contrib/buildsystems/CMakeLists.txt @@ -1102,10 +1102,10 @@ if(NOT ${CMAKE_BINARY_DIR}/CMakeCache.txt STREQUAL ${CACHE_PATH}) file(COPY ${CMAKE_SOURCE_DIR}/contrib/completion/git-completion.bash DESTINATION ${CMAKE_BINARY_DIR}/contrib/completion/) endif() -file(GLOB test_scipts "${CMAKE_SOURCE_DIR}/t/t[0-9]*.sh") +file(GLOB test_scripts "${CMAKE_SOURCE_DIR}/t/t[0-9]*.sh") #test -foreach(tsh ${test_scipts}) +foreach(tsh ${test_scripts}) add_test(NAME ${tsh} COMMAND ${SH_EXE} ${tsh} --no-bin-wrappers --no-chain-lint -vx WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/t)