From 3401d97ee6a98e8251f325498fac6db75f653c55 Mon Sep 17 00:00:00 2001 From: Xavier Sellier Date: Thu, 3 Sep 2020 14:18:22 +0200 Subject: [PATCH] Cannot export to OSX OSX template name misses the 64 --- platform/osx/export/export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/osx/export/export.cpp b/platform/osx/export/export.cpp index 808e5b9029b..3a434983a68 100644 --- a/platform/osx/export/export.cpp +++ b/platform/osx/export/export.cpp @@ -387,7 +387,7 @@ Error EditorExportPlatformOSX::export_project(const String &p_path, bool p_debug } } - String binary_to_use = "godot_osx_" + String(p_debug ? "debug" : "release") + "."; + String binary_to_use = "godot_osx_" + String(p_debug ? "debug" : "release") + ".64"; String pkg_name; if (app_name != "")