From 15b7c3039a41eab75f5dcabab53de82372d2ecfa Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Tue, 9 Jun 2015 23:23:46 +0200 Subject: GH-1060 update tweaks * download to multimc folder hierarchy * use rename, not copy * keep backup after update * clean previous backup before update * it's not 'copy', it's 'replace' --- logic/updater/GoUpdate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'logic/updater/GoUpdate.h') diff --git a/logic/updater/GoUpdate.h b/logic/updater/GoUpdate.h index 21976f8f..479f1eeb 100644 --- a/logic/updater/GoUpdate.h +++ b/logic/updater/GoUpdate.h @@ -68,7 +68,7 @@ struct Operation { static Operation CopyOp(QString fsource, QString fdest, int fmode=0644) { - return Operation{OP_COPY, fsource, fdest, fmode}; + return Operation{OP_REPLACE, fsource, fdest, fmode}; } static Operation DeleteOp(QString file) { @@ -84,7 +84,7 @@ struct Operation //! Specifies the type of operation that this is. enum Type { - OP_COPY, + OP_REPLACE, OP_DELETE, } type; -- cgit