build.exe return code (errorlevel)

I may be too late to this bandwagon, but does build.exe return any meaningful non-zero error code in case of build failure? I don’t seem to get anything else than 0.

From my experience the ERRORLEVEL environment var should be set to 0 on
success and on 1 on failure. Type
%ERRORLEVEL% after a build to verify this, possibly you have a problem with
your conditional processing in your script or otherwise use:

if %ERRORLEVEL% LEQ 1 ECHO ERROR

//Daniel

wrote in message news:xxxxx@ntdev…
>I may be too late to this bandwagon, but does build.exe return any
>meaningful non-zero error code in case of build failure? I don’t seem to
>get anything else than 0.
>