From 46693baacfac2a2bd8a9e2d582cf7dc424f3e009 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Wed, 27 Aug 2025 11:49:05 +0200 Subject: [PATCH] No walrus --- nix/build-all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/build-all.py b/nix/build-all.py index eb083af61a..dce2af41f9 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -1031,8 +1031,8 @@ if "wasm" in flags: # inside of the sysroot set by the emscriptem toolchain cmake_args.append("-DWASM_BUILD=On") - -if schemas := os.environ.get("IFCOS_SCHEMAS"): +schemas = os.environ.get("IFCOS_SCHEMAS") +if schemas: cmake_args.append(f"-DSCHEMA_VERSIONS={schemas}") if "cgal" in targets: