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/macos/export | |
parent | 6c579280630715ff7da8310d405ef34194847294 (diff) | |
download | redot-engine-a057158d7569a157d9dc1f4f4539c14519bc0af0.tar.gz |
Revert pack trimming introduced by #82084
Diffstat (limited to 'platform/macos/export')
-rw-r--r-- | platform/macos/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/macos/export/export_plugin.cpp b/platform/macos/export/export_plugin.cpp index e19a1e416c..d75def9b50 100644 --- a/platform/macos/export/export_plugin.cpp +++ b/platform/macos/export/export_plugin.cpp @@ -1774,7 +1774,7 @@ Error EditorExportPlatformMacOS::export_project(const Ref<EditorExportPreset> &p String pack_path = tmp_app_path_name + "/Contents/Resources/" + pkg_name + ".pck"; Vector<SharedObject> shared_objects; - err = save_pack(true, p_preset, p_debug, pack_path, &shared_objects); + err = save_pack(p_preset, p_debug, pack_path, &shared_objects); bool lib_validation = p_preset->get("codesign/entitlements/disable_library_validation"); if (!shared_objects.is_empty() && sign_enabled && ad_hoc && !lib_validation) { |