diff options
| author | George L. Albany <Megacake1234@gmail.com> | 2024-10-23 05:50:37 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-23 05:50:37 +0000 |
| commit | ff0b71c4b77c6963d589416a00937a837d15f755 (patch) | |
| tree | d12023f7b21154a83daa4e59f4151703c54d4a79 | |
| parent | 373a38306ee179e2505e6bade541ed60e9cebec3 (diff) | |
| parent | 128a972586c99ab9ca0b538f194f1fbebf045601 (diff) | |
| download | redot-engine-ff0b71c4b77c6963d589416a00937a837d15f755.tar.gz | |
Merge pull request #775 from Spartan322/4.3-fix/macos-export-plugin
[4.3] Rebrand macos exports to Redot
| -rw-r--r-- | platform/macos/export/export_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/macos/export/export_plugin.cpp b/platform/macos/export/export_plugin.cpp index 0b17e847b8..f34fd5631e 100644 --- a/platform/macos/export/export_plugin.cpp +++ b/platform/macos/export/export_plugin.cpp @@ -1550,7 +1550,7 @@ Error EditorExportPlatformMacOS::export_project(const Ref<EditorExportPreset> &p int ret = unzGoToFirstFile(src_pkg_zip); String architecture = p_preset->get("binary_format/architecture"); - String binary_to_use = "godot_macos_" + String(p_debug ? "debug" : "release") + "." + architecture; + String binary_to_use = "redot_macos_" + String(p_debug ? "debug" : "release") + "." + architecture; String pkg_name; if (String(GLOBAL_GET("application/config/name")) != "") { @@ -1842,7 +1842,7 @@ Error EditorExportPlatformMacOS::export_project(const Ref<EditorExportPreset> &p _fix_privacy_manifest(p_preset, data); } - if (file.begins_with("Contents/MacOS/godot_")) { + if (file.begins_with("Contents/MacOS/redot_")) { if (file != "Contents/MacOS/" + binary_to_use) { ret = unzGoToNextFile(src_pkg_zip); continue; // skip |
