I am using a pipe to TEE a call to apache ant
SET ERRORLEVEL=
call C:\ant\bin\ant.bat %* |TEE build-logs\build-log-%yyyy%%mm%%dd%.%hh%%nn%%ss%.txt
echo ERRORLEVEL %ERRORLEVEL%
Which gives me a consistent ERRORLEVEL 4264624 when I use a test task with or without <fail/> in it.
In other words I am not getting the status of ant.bat, but something else.
This is DOS not BASH, so I don't have access to
echo ${PIPESTATUS[0]}
Is there a direct solution to this, if not my goals are to log ant output as shown, and to capture the return code.