From 2f47226f91f0b02f7617912175274d9eed85924f Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sun, 3 Jan 2021 23:04:14 -0500 Subject: [PATCH] cmake: Prevent nested tarballs (or other archives) in the release This happened dring the release of the version 2.5.2. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b70ab248..8822307c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -161,5 +161,5 @@ set (CPACK_SOURCE_IGNORE_FILES "CMakeCache" "CMakeFiles" "CPackConfig" "CPackSo "_CPack_Packages" "cmake_install" "install_manifest" "Makefile$" "test" "package-config" "misc/*" "src/task$" "src/calc$" "performance" "src/libtask.a" "src/columns/libcolumns.a" "src/commands/libcommands.a" - ".github/" "/\\\\.gitignore" "/\\\\.git/" "swp$" "src/lex$") + ".github/" "/\\\\.gitignore" "/\\\\.git/" "swp$" "src/lex$" ".*tar.gz") include (CPack)