Merge pull request #44087 from akien-mga/osx-export-fix-path

OSX: Fix tmp .app folder name after #44060
This commit is contained in:
Rémi Verschelde 2020-12-04 14:33:25 +01:00 committed by GitHub
commit c9f626b598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ Error EditorExportPlatformOSX::export_project(const Ref<EditorExportPreset> &p_p
String export_format = use_dmg() && p_path.ends_with("dmg") ? "dmg" : "zip";
// Create our application bundle.
String tmp_app_dir_name = pkg_name;
String tmp_app_dir_name = pkg_name + ".app";
String tmp_app_path_name = EditorSettings::get_singleton()->get_cache_dir().plus_file(tmp_app_dir_name);
print_line("Exporting to " + tmp_app_path_name);