1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

SCons: Expand NoCache coverage

This commit is contained in:
Thaddeus Crews
2025-03-18 09:54:55 -05:00
parent fc827bbe25
commit 83cf424b5f
6 changed files with 23 additions and 23 deletions

View File

@@ -102,12 +102,14 @@ def create_template_zip(env, js, wasm, side):
in_files.append("#misc/dist/html/offline-export.html")
out_files.append(zip_dir.File("godot.offline.html"))
zip_files = env.InstallAs(out_files, in_files)
env.Zip(
"#bin/godot",
zip_files,
ZIPROOT=zip_dir,
ZIPSUFFIX="${PROGSUFFIX}${ZIPSUFFIX}",
zip_files = env.NoCache(env.InstallAs(out_files, in_files))
env.NoCache(
env.Zip(
"#bin/godot",
zip_files,
ZIPROOT=zip_dir,
ZIPSUFFIX="${PROGSUFFIX}${ZIPSUFFIX}",
)
)