aboutsummaryrefslogtreecommitdiff
path: root/scene/SCsub
diff options
context:
space:
mode:
authorRémi Verschelde2017-11-28 09:17:05 +0100
committerGitHub2017-11-28 09:17:05 +0100
commit95e7656a152f6158b50ff15f232097ff2175d170 (patch)
tree72f06c4b4a0aaa17aa9108bc12f20d057b671151 /scene/SCsub
parenta26b36bec2e99a128b7a61ff9fa1e2e46148f547 (diff)
parenta4a222d62dcffaf93e3dd439c3f61836a4cd831e (diff)
downloadgodot-95e7656a152f6158b50ff15f232097ff2175d170.tar.gz
godot-95e7656a152f6158b50ff15f232097ff2175d170.tar.zst
godot-95e7656a152f6158b50ff15f232097ff2175d170.zip
Merge pull request #13359 from rraallvv/cache_pruning
Fixes for SCons shared cache for Travis-CI and AppVeyor-CI (master)
Diffstat (limited to 'scene/SCsub')
-rw-r--r--scene/SCsub1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/SCsub b/scene/SCsub
index 513adeffd..bec1b40ed 100644
--- a/scene/SCsub
+++ b/scene/SCsub
@@ -31,6 +31,7 @@ SConscript('resources/SCsub')
# Build it all as a library
lib = env.Library("scene", env.scene_sources)
+env.NoCache(lib)
env.Prepend(LIBS=[lib])
Export('env')