From 9460363979edef6314ed1b3b274fb0805ef805c5 Mon Sep 17 00:00:00 2001 From: TAC109 <49378716+TAC109@users.noreply.github.com> Date: Mon, 21 Aug 2023 16:46:31 +1200 Subject: [PATCH] Fix compile of new .exe failed in 1.1.37.01a. --- Compiler.ahk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Compiler.ahk b/Compiler.ahk index c704268..e6dc497 100644 --- a/Compiler.ahk +++ b/Compiler.ahk @@ -91,8 +91,7 @@ AhkCompile(AhkFile, ExeFile, ResourceID, CustomIcon, BinFile, UseMPRESS, fileCP) Loop { try ;v FileMove, but avoids copying permissions from temp - { FileDelete %ExeFileG% - FileCopy %ExeFileTmp%, %ExeFileG%, 1 + { FileCopy %ExeFileTmp%, %ExeFileG%, 1 FileDelete %ExeFileTmp% break }