in reply to Re^2: system call returns incorrect in windows
in thread system call returns incorrect in windows
Hi,
ERRORLEVEL merely reflects errno, and that can change each time you execute a command
I think the problem is the /b in exit /b %ANT_ERROR%
here is why
$ perl -le" print system 'errorexit1.bat' " $ exit 1 256 $ perl -le" print system 'errorexitb1.bat' " $ exit /b 1 0 $
This tells me you are probably supposed to system antRun.bat or https://github.com/apache/ant/blob/master/src/script/antRun.pl
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: system call returns incorrect in windows (use antRun)
by Lotus1 (Vicar) on Apr 07, 2018 at 18:46 UTC | |
by Anonymous Monk on Apr 08, 2018 at 05:28 UTC |