From cbfcaef83c973494ec14b8df59dd909b9e84fe13 Mon Sep 17 00:00:00 2001 From: tmadlener Date: Thu, 21 Sep 2023 16:09:20 +0200 Subject: [PATCH] Make regex a bit less error prone --- python/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index a17b07748..5952f8959 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -19,7 +19,7 @@ else() DESTINATION ${podio_PYTHON_INSTALLDIR} REGEX test_.*\\.py$ EXCLUDE # Do not install test files PATTERN __pycache__ EXCLUDE # Or pythons caches - REGEX .*sio.*\\.py$ EXCLUDE # All things sio related + REGEX .*sio_.*\\.py$ EXCLUDE # All things sio related ) endif()