Merge pull request #79950 from bruvzg/win_app
[macOS Export] Disable unpacked .app bundle export on Windows.
This commit is contained in:
commit
24049b6646
|
@ -342,7 +342,9 @@ List<String> EditorExportPlatformMacOS::get_binary_extensions(const Ref<EditorEx
|
||||||
list.push_back("dmg");
|
list.push_back("dmg");
|
||||||
#endif
|
#endif
|
||||||
list.push_back("zip");
|
list.push_back("zip");
|
||||||
|
#ifndef WINDOWS_ENABLED
|
||||||
list.push_back("app");
|
list.push_back("app");
|
||||||
|
#endif
|
||||||
} else if (dist_type == 1) {
|
} else if (dist_type == 1) {
|
||||||
#ifdef MACOS_ENABLED
|
#ifdef MACOS_ENABLED
|
||||||
list.push_back("dmg");
|
list.push_back("dmg");
|
||||||
|
|
Loading…
Reference in New Issue