diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-08-09 12:44:48 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-08-09 12:44:48 +0300 |
commit | 824324e7c4290414674f2ad6b3295295cadeab7f (patch) | |
tree | 58cdbf4708cb12d5c98751af1632992363eba83b /platform/ios | |
parent | 739019e4e4a6e4763e37adfd9883a1c85d5f6249 (diff) | |
download | redot-engine-824324e7c4290414674f2ad6b3295295cadeab7f.tar.gz |
[iOS] Fix dylib GDExtension convertion.
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 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")); |