diff --git a/templates/common/compress.py b/templates/common/compress.py
index 408df0590fb89c25c4eac80f5216b840345b7efe..247b145bf326c2246661fcd1171659eddc77ece8 100644
--- a/templates/common/compress.py
+++ b/templates/common/compress.py
@@ -53,9 +53,10 @@ def compress_outputs():
 
         # Remove source files
         if destination_file_path.exists():
+            logger.info(f"crazy: {destination_file_path.exists()}  {destination_file_path.as_posix()!r}.")
             logger.info(f"{source_file_path.name!r} copied to {destination_file_path.as_posix()!r}.")
             logger.info(f"Removing {source_file_path.as_posix()!r}")
-            source_file_path.unlink()
+            #source_file_path.unlink()
 
 
 if __name__ == "__main__":