summaryrefslogtreecommitdiffstats
path: root/platform/macos/export/export_plugin.cpp
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-07-27 13:21:23 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-07-27 13:21:23 +0300
commit56bd7adae4dc8a55284b060bc3e561c6c4226893 (patch)
treea09e0b3f3e069a79a5d2a92aafd2be54c1021a7b /platform/macos/export/export_plugin.cpp
parent41a7f6b38047773386710d5e49b64b173a3198de (diff)
downloadredot-engine-56bd7adae4dc8a55284b060bc3e561c6c4226893.tar.gz
[macOS Export] Disable unpacked .app bundle export on Windows.
Diffstat (limited to 'platform/macos/export/export_plugin.cpp')
-rw-r--r--platform/macos/export/export_plugin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/macos/export/export_plugin.cpp b/platform/macos/export/export_plugin.cpp
index 81f9707f6b..1afcedc576 100644
--- a/platform/macos/export/export_plugin.cpp
+++ b/platform/macos/export/export_plugin.cpp
@@ -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");