Merge pull request #95323 from bruvzg/ios_dyl

[iOS] Fix dylib GDExtension convertion.
This commit is contained in:
Rémi Verschelde 2024-08-09 23:25:12 +02:00 committed by GitHub
commit d0fc7f73df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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"));