From 7bdc1b6a7530017a6f5ed22fb18d3f3bc1ba270e Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 18 Mar 2026 10:57:36 +0500 Subject: [PATCH] cache_dependencies - skip ifcopenshell dir when packing --- nix/cache_dependencies.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/cache_dependencies.py b/nix/cache_dependencies.py index 465d6002f1..3d115764b4 100644 --- a/nix/cache_dependencies.py +++ b/nix/cache_dependencies.py @@ -41,6 +41,9 @@ def pack_dependencies(install_dir: Path) -> None: if not dependency_path.is_dir(): continue dependency_name = dependency_path.name + # Skip ifcopenshell - it's a build output, not a dependency to reuse across builds. + if dependency_name == "ifcopenshell": + continue tar_path = install_dir / f"{CACHE_PREFIX}{dependency_name}.tar.gz" if tar_path.exists(): print(f"Skipping existing cache: '{tar_path}'")