Merge pull request #79950 from bruvzg/win_app

[macOS Export] Disable unpacked .app bundle export on Windows.
This commit is contained in:
Yuri Sizov 2023-08-02 21:37:01 +02:00
commit 24049b6646
1 changed files with 2 additions and 0 deletions

View File

@ -342,7 +342,9 @@ List<String> EditorExportPlatformMacOS::get_binary_extensions(const Ref<EditorEx
list.push_back("dmg");
#endif
list.push_back("zip");
#ifndef WINDOWS_ENABLED
list.push_back("app");
#endif
} else if (dist_type == 1) {
#ifdef MACOS_ENABLED
list.push_back("dmg");