Skip to content

Commit

Permalink
OSX: Fix tmp .app folder name after godotengine#44060
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga committed Dec 4, 2020
1 parent 7815bff commit 02d2285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/osx/export/export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 02d2285

Please sign in to comment.