diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-11-15 18:26:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 18:26:05 +0100 |
commit | 6c05ec3d6732cac44cf85c91db7d3fd1075bcb23 (patch) | |
tree | f1743d69321aca7385667e2f6dfef82ea1d30132 /methods.py | |
parent | 68fe5817aaa2f556402d800fb237f9adf7441bc4 (diff) | |
parent | c9acbf5a79e9a20fd38335dc46617090e08657af (diff) | |
download | redot-engine-6c05ec3d6732cac44cf85c91db7d3fd1075bcb23.tar.gz |
Merge pull request #99291 from akien-mga/scons-cache-fixup
SCons: Fix up build after cache logic changes
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/methods.py b/methods.py index c115b71adf..1c33b00051 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"): |