giovedì 1 marzo 2012

ERRORLEVEL != %ERRORLEVEL%

Just a note to say that if you use windows batches remember that:
ERRORLEVEL is not %ERRORLEVEL%

These statement are not the same...

IF ERRORLEVEL NEQ 0 goto next_step

IF %ERRORLEVEL% NEQ 0 goto next_step

Google a bit to find out the differences ...