diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-11 14:01:16 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-11 14:01:16 +0100 |
commit | 0475011c661a2e2d7ebb477c00e7679d5235ad1c (patch) | |
tree | 6de09acbf4a51f4db75045bc46dbc4ac85530f5e /platform/ios/export/export_plugin.cpp | |
parent | 810f127022ec2cbfb288e436151d1a777c7b5da7 (diff) | |
parent | 5e6adb4a2dd947432e59ca00b6d046a68c534e10 (diff) | |
download | redot-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/ios/export/export_plugin.cpp')
-rw-r--r-- | platform/ios/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/export/export_plugin.cpp b/platform/ios/export/export_plugin.cpp index 00473165fd..82b4f6f904 100644 --- a/platform/ios/export/export_plugin.cpp +++ b/platform/ios/export/export_plugin.cpp @@ -1657,7 +1657,7 @@ Error EditorExportPlatformIOS::_export_project_helper(const Ref<EditorExportPres } String pack_path = binary_dir + ".pck"; Vector<SharedObject> libraries; - Error err = save_pack(p_preset, p_debug, pack_path, &libraries); + Error err = save_pack(true, p_preset, p_debug, pack_path, &libraries); if (err) { // Message is supplied by the subroutine method. return err; |