From cacb978a2f625bfb7ea8cb4da201b4933b4f06b3 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 18 Nov 2014 10:15:35 +0200 Subject: [PATCH] build.bat: show more info when creating the ZIP file. [ci skip] --- build.bat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.bat b/build.bat index 3c121d8d8..d8399dde4 100644 --- a/build.bat +++ b/build.bat @@ -80,6 +80,7 @@ EXIT /B :SubZipFile TITLE Creating the ZIP file... +ECHO. & ECHO Creating the ZIP file... PUSHD "src\bin\Release" IF EXIST "temp_zip" RD /S /Q "temp_zip" IF NOT EXIST "temp_zip" MD "temp_zip" @@ -105,6 +106,7 @@ START "" /B /WAIT "%SEVENZIP%" a -tzip -mx=9 "SE%VERSION%.zip" * >NUL IF %ERRORLEVEL% NEQ 0 GOTO EndWithError +ECHO. & ECHO ZIP file created successfully! MOVE /Y "SE%VERSION%.zip" "..\..\..\.." >NUL POPD IF EXIST "temp_zip" RD /S /Q "temp_zip"