diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-16 11:53:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-16 11:53:08 +0100 |
commit | 9d732aa0cfcfd638c28ac8eb8149d912a5a3a642 (patch) | |
tree | 25f86a745f3138fa0201506388e694558e934ed0 /platform/iphone/export/export_plugin.cpp | |
parent | b1fbd8ab40fa133b048fe49928f0a8f1e9bd8527 (diff) | |
parent | 98d0af7d5cd5fdba468ab88535a0152022467e85 (diff) |
Merge pull request #58973 from bruvzg/gde_export
Diffstat (limited to 'platform/iphone/export/export_plugin.cpp')
-rw-r--r-- | platform/iphone/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/export/export_plugin.cpp b/platform/iphone/export/export_plugin.cpp index 26c5acb13e..ac5886e620 100644 --- a/platform/iphone/export/export_plugin.cpp +++ b/platform/iphone/export/export_plugin.cpp @@ -1440,7 +1440,7 @@ Error EditorExportPlatformIOS::export_project(const Ref<EditorExportPreset> &p_p } String pack_path = dest_dir + binary_name + ".pck"; Vector<SharedObject> libraries; - Error err = save_pack(p_preset, pack_path, &libraries); + Error err = save_pack(p_preset, p_debug, pack_path, &libraries); if (err) { return err; } |