mirror of
https://github.com/godotengine/godot.git
synced 2025-02-10 21:01:20 +00:00
Merge pull request #25954 from AlexHolly/fix-android-jarsigner-duplicate-file
Fix Android jarsigner error duplicate file
This commit is contained in:
commit
9402d2f9fe
@ -858,7 +858,7 @@ Error EditorExportPlatform::export_project_files(const Ref<EditorExportPreset> &
|
||||
Vector<uint8_t> array = FileAccess::get_file_as_array(icon);
|
||||
p_func(p_udata, icon, array, idx, total);
|
||||
}
|
||||
if (splash != String() && FileAccess::exists(splash)) {
|
||||
if (splash != String() && FileAccess::exists(splash) && icon != splash) {
|
||||
Vector<uint8_t> array = FileAccess::get_file_as_array(splash);
|
||||
p_func(p_udata, splash, array, idx, total);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user