summaryrefslogtreecommitdiffstats
path: root/platform/windows/export/export_plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/windows/export/export_plugin.cpp')
-rw-r--r--platform/windows/export/export_plugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/windows/export/export_plugin.cpp b/platform/windows/export/export_plugin.cpp
index 0c6721e118..fe2a930cc8 100644
--- a/platform/windows/export/export_plugin.cpp
+++ b/platform/windows/export/export_plugin.cpp
@@ -285,15 +285,15 @@ Error EditorExportPlatformWindows::export_project(const Ref<EditorExportPreset>
if (p_preset->get("codesign/enable")) {
_code_sign(p_preset, pck_path);
- String wrapper_path = p_path.get_basename() + ".console.exe";
+ String wrapper_path = path.get_basename() + ".console.exe";
if (FileAccess::exists(wrapper_path)) {
_code_sign(p_preset, wrapper_path);
}
}
if (embedded) {
- Ref<DirAccess> tmp_dir = DirAccess::create_for_path(p_path.get_base_dir());
- err = tmp_dir->rename(pck_path, p_path);
+ Ref<DirAccess> tmp_dir = DirAccess::create_for_path(path.get_base_dir());
+ err = tmp_dir->rename(pck_path, path);
if (err != OK) {
add_message(EXPORT_MESSAGE_ERROR, TTR("PCK Embedding"), vformat(TTR("Failed to rename temporary file \"%s\"."), pck_path));
}