diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-08-09 23:25:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-09 23:25:12 +0200 |
commit | d0fc7f73df1dd7694ef1b9284c093a3af9f26270 (patch) | |
tree | 9dd23d52a4551a352e7cb492450abe0d3e5ab985 /platform | |
parent | c73ac74c4a44ccfed158b3603f809a24590bac0a (diff) | |
parent | 824324e7c4290414674f2ad6b3295295cadeab7f (diff) | |
download | redot-engine-d0fc7f73df1dd7694ef1b9284c093a3af9f26270.tar.gz |
Merge pull request #95323 from bruvzg/ios_dyl
[iOS] Fix dylib GDExtension convertion.
Diffstat (limited to 'platform')
-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 5b65c8b485..580e3ba789 100644 --- a/platform/ios/export/export_plugin.cpp +++ b/platform/ios/export/export_plugin.cpp @@ -1628,7 +1628,7 @@ Error EditorExportPlatformIOS::_copy_asset(const Ref<EditorExportPreset> &p_pres asset_path = asset_path.path_join(framework_name); destination_dir = p_out_dir.path_join(asset_path); - destination = destination_dir.path_join(file_name); + destination = destination_dir; // Convert to framework and copy. Error err = _convert_to_framework(p_asset, destination, p_preset->get("application/bundle_identifier")); |