summaryrefslogtreecommitdiffstats
path: root/platform/web
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-03-11 14:01:16 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-03-11 14:01:16 +0100
commit0475011c661a2e2d7ebb477c00e7679d5235ad1c (patch)
tree6de09acbf4a51f4db75045bc46dbc4ac85530f5e /platform/web
parent810f127022ec2cbfb288e436151d1a777c7b5da7 (diff)
parent5e6adb4a2dd947432e59ca00b6d046a68c534e10 (diff)
downloadredot-engine-0475011c661a2e2d7ebb477c00e7679d5235ad1c.tar.gz
Merge pull request #82084 from ogapo/pr/pck-cache-merge
Merge `uid_cache.bin` and `global_script_class_cache.cfg` after mounting PCKs
Diffstat (limited to 'platform/web')
-rw-r--r--platform/web/export/export_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/export/export_plugin.cpp b/platform/web/export/export_plugin.cpp
index 41c969b5f4..ec7f599507 100644
--- a/platform/web/export/export_plugin.cpp
+++ b/platform/web/export/export_plugin.cpp
@@ -479,7 +479,7 @@ Error EditorExportPlatformWeb::export_project(const Ref<EditorExportPreset> &p_p
// Export pck and shared objects
Vector<SharedObject> shared_objects;
String pck_path = base_path + ".pck";
- Error error = save_pack(p_preset, p_debug, pck_path, &shared_objects);
+ Error error = save_pack(true, p_preset, p_debug, pck_path, &shared_objects);
if (error != OK) {
add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not write file: \"%s\"."), pck_path));
return error;