Hello All, I'm calling an ant target from within my batch script as follows:
cmd/C ant -f mailer.xml sendmail My problem is that if the sendmail target fails, I have to stop execution of my batch script. For that I tried adding the following statement after the ant call: if %ERRORLEVEL% != 0 goto END This is not working because the ERRORLEVEL is set to 0 even if the ant target fails. May I know what is the best way to capture the BUILD success/failure status of ant target ??? Is there any environment variable that we can access to know this status? Thank you, Venkatesh __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]