Skip to content

Commit d0fc7f7

Browse files
authored
Merge pull request godotengine#95323 from bruvzg/ios_dyl
[iOS] Fix dylib GDExtension convertion.
2 parents c73ac74 + 824324e commit d0fc7f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/ios/export/export_plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1628,7 +1628,7 @@ Error EditorExportPlatformIOS::_copy_asset(const Ref<EditorExportPreset> &p_pres
16281628

16291629
asset_path = asset_path.path_join(framework_name);
16301630
destination_dir = p_out_dir.path_join(asset_path);
1631-
destination = destination_dir.path_join(file_name);
1631+
destination = destination_dir;
16321632

16331633
// Convert to framework and copy.
16341634
Error err = _convert_to_framework(p_asset, destination, p_preset->get("application/bundle_identifier"));

0 commit comments

Comments
 (0)