diff options
author | Nils ANDRÉ-CHANG <nils.andre.chang@gmail.com> | 2019-06-16 13:31:57 +0100 |
---|---|---|
committer | Nils ANDRÉ-CHANG <nils.andre.chang@gmail.com> | 2019-06-23 13:33:50 +0100 |
commit | d2833d4f4d891b6a0ee32a04f9d32a410b998b93 (patch) | |
tree | 3e1ce371e8edfb4f30571adb1e3c2b0b4a0a3389 /platform/osx/export/export.cpp | |
parent | f410e7a8a9b14fd9f5c210afcc9e3519e9ce246d (diff) | |
download | redot-engine-d2833d4f4d891b6a0ee32a04f9d32a410b998b93.tar.gz |
Replace ` + "/" + ` with `String::file_add()`
Diffstat (limited to 'platform/osx/export/export.cpp')
-rw-r--r-- | platform/osx/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/export/export.cpp b/platform/osx/export/export.cpp index 9dabbb12fc..8cabc45250 100644 --- a/platform/osx/export/export.cpp +++ b/platform/osx/export/export.cpp @@ -570,7 +570,7 @@ Error EditorExportPlatformOSX::export_project(const Ref<EditorExportPreset> &p_p if (export_format == "dmg") { // write it into our application bundle - file = tmp_app_path_name + "/" + file; + file = tmp_app_path_name.plus_file(file); // write the file, need to add chmod FileAccess *f = FileAccess::open(file, FileAccess::WRITE); |