The given code snippet:

if ERRORLEVEL EQ 1 goto error

will never be generated in a batch file for windows. It contains only code like the following:

if ERRORLEVEL 1 goto error
which is exactly a check for greater or equal 1. The return code is traditionally limited to the range from 0..255.


But it might be a good idea to change the return code check to the suggested code.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to