2
0
Эх сурвалжийг харах

Merge pull request #79950 from bruvzg/win_app

[macOS Export] Disable unpacked .app bundle export on Windows.
Yuri Sizov 2 жил өмнө
parent
commit
24049b6646

+ 2 - 0
platform/macos/export/export_plugin.cpp

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