diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-10-23 19:43:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-23 19:43:41 +0000 |
commit | 5320e3b5d66e213a2107c76f94e32f91a7e87732 (patch) | |
tree | 2b99f485e43a1a8aaecd2935c500828382b8565f | |
parent | d81cd4edfe2408cdbb3d99ad81e4efb5a07c18bf (diff) | |
parent | 09fae16ef69b9b380e119431f224dd8ebc7dce99 (diff) | |
download | redot-engine-5320e3b5d66e213a2107c76f94e32f91a7e87732.tar.gz |
Merge pull request #774 from Spartan322/fix/macos-export-plugin
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 6f4efad564..e766fce63e 100644 --- a/platform/macos/export/export_plugin.cpp +++ b/platform/macos/export/export_plugin.cpp @@ -1553,7 +1553,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")) != "") { @@ -1845,7 +1845,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 |