minor changes in batch file

This commit is contained in:
Geoff McLane 2014-08-05 13:08:24 +02:00
parent 9544d442af
commit a51d9a8a69

View file

@ -47,6 +47,7 @@
@set TMPCNT3=0
@for %%i in (*.org.html) do @(call :CNTIT %%i)
@echo.
@echo Will process %TMPCNT1% files found...
@echo All should exit with NO WARNINGS or ERRORS
@echo *** CONTINUE? *** Only Ctlr+C aborts... all other keys continue...
@ -54,12 +55,14 @@
@for %%i in (*.org.html) do @(call :DOONE %%i)
@echo.
@echo Done %TMPCNT2% files. See tidied output in %TMPDIR%...
@if "%TMPCNT3%x" == "0x" (
@echo With NO WARNINGS or ERRORS! This ia a success...
@echo With NO WARNINGS or ERRORS! This is a *** SUCCESS ***.
) ELSE (
@echo However have %TMPCNT3% WARNINGS or ERRORS! This is a FAILURE...
@echo However have %TMPCNT3% WARNINGS or ERRORS! This is a *** FAILURE ***
)
@echo.
@goto END