diff options
author | Mikael Hermansson <mikael@hermansson.io> | 2024-04-10 12:00:04 +0200 |
---|---|---|
committer | Mikael Hermansson <mikael@hermansson.io> | 2024-04-10 12:00:04 +0200 |
commit | a057158d7569a157d9dc1f4f4539c14519bc0af0 (patch) | |
tree | f07099554c925dae2d8eeb4bc0e193b67719311f /platform/ios | |
parent | 6c579280630715ff7da8310d405ef34194847294 (diff) | |
download | redot-engine-a057158d7569a157d9dc1f4f4539c14519bc0af0.tar.gz |
Revert pack trimming introduced by #82084
Diffstat (limited to 'platform/ios')
-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 dba1820ca7..33389129b7 100644 --- a/platform/ios/export/export_plugin.cpp +++ b/platform/ios/export/export_plugin.cpp @@ -1662,7 +1662,7 @@ Error EditorExportPlatformIOS::_export_project_helper(const Ref<EditorExportPres } String pack_path = binary_dir + ".pck"; Vector<SharedObject> libraries; - Error err = save_pack(true, p_preset, p_debug, pack_path, &libraries); + Error err = save_pack(p_preset, p_debug, pack_path, &libraries); if (err) { // Message is supplied by the subroutine method. return err; |