summaryrefslogtreecommitdiffstats
path: root/platform/ios/export/export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-10 14:22:48 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-10 14:22:48 +0200
commit1f0f81049fc470fe10ddb64086c94b9c595ec81f (patch)
tree3c4cdccf082db25868aebb138a47933a34f37136 /platform/ios/export/export_plugin.cpp
parent5d4507b9149fadb1f8fe708488f90dbd9b65aa43 (diff)
parenta057158d7569a157d9dc1f4f4539c14519bc0af0 (diff)
downloadredot-engine-1f0f81049fc470fe10ddb64086c94b9c595ec81f.tar.gz
Merge pull request #90476 from mihe/revert-pack-trimming
Revert pack trimming introduced by #82084
Diffstat (limited to 'platform/ios/export/export_plugin.cpp')
-rw-r--r--platform/ios/export/export_plugin.cpp2
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;