From fb268bb04f868ec2f844cbf60c0bbad0d4bbd3f8 Mon Sep 17 00:00:00 2001 From: spycrab Date: Thu, 26 Apr 2018 11:00:03 +0200 Subject: [PATCH] Updater: Use copy instead of move --- Source/Core/Updater/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Updater/Main.cpp b/Source/Core/Updater/Main.cpp index d13019b8f6..1ee8b21a4a 100644 --- a/Source/Core/Updater/Main.cpp +++ b/Source/Core/Updater/Main.cpp @@ -590,7 +590,7 @@ bool UpdateFiles(const std::vector& to_update, std::string content_filename = HexEncode(op.new_hash.data(), op.new_hash.size()); fprintf(log_fp, "Updating file %s from content %s...\n", op.filename.c_str(), content_filename.c_str()); - if (!File::Rename(temp_path + DIR_SEP + content_filename, path)) + if (!File::Copy(temp_path + DIR_SEP + content_filename, path)) { fprintf(log_fp, "Could not update file %s.\n", op.filename.c_str()); return false;