From c9acbf5a79e9a20fd38335dc46617090e08657af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 15 Nov 2024 18:18:12 +0100 Subject: [PATCH] SCons: Fix up build after cache logic changes --- methods.py | 1 + 1 file changed, 1 insertion(+) diff --git a/methods.py b/methods.py index c115b71adf6..1c33b00051b 100644 --- a/methods.py +++ b/methods.py @@ -912,6 +912,7 @@ def prepare_cache(env) -> None: if env.GetOption("clean"): return + cache_path = "" if env["cache_path"]: cache_path = cast(str, env["cache_path"]) elif os.environ.get("SCONS_CACHE"):