From acdaa6769652476d495cb49a3ada1beceaf03017 Mon Sep 17 00:00:00 2001 From: Geoff McLane Date: Tue, 27 Jan 2015 18:06:55 +0100 Subject: [PATCH] small adjust in updexe.bat --- build/win64/updexe.bat | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build/win64/updexe.bat b/build/win64/updexe.bat index 1ac9204..e8920e9 100644 --- a/build/win64/updexe.bat +++ b/build/win64/updexe.bat @@ -1,15 +1,15 @@ @setlocal @REM copy the EXE into C:\MDOS, IFF changed @set TMPDIR=C:\MDOS -@set TMPFIL=tidy5.exe -@set TMPSRC=Release\%TMPFIL% - +@set TMPFIL1=tidy5.exe +@set TMPFIL2=tidy5.exe +@set TMPSRC=Release\%TMPFIL1% @if NOT EXIST %TMPSRC% goto ERR1 @echo Current source %TMPSRC% @call dirmin %TMPSRC% @if NOT EXIST %TMPDIR%\nul goto ERR2 -@set TMPDST=%TMPDIR%\%TMPFIL% +@set TMPDST=%TMPDIR%\%TMPFIL2% @if NOT EXIST %TMPDST% goto DOCOPY @echo Current destination %TMPDST% @@ -19,7 +19,9 @@ @fc4 -q -v0 -b %TMPSRC% %TMPDST% >nul @if ERRORLEVEL 2 goto NOFC4 @if ERRORLEVEL 1 goto DOCOPY +@echo. @echo Files are the SAME... Nothing done... +@echo. @goto END :NOFC4 @@ -52,4 +54,3 @@ copy %TMPSRC% %TMPDST% @exit /b 0 @REM eof -