Check if two antcalls are successfull
问题 I'm extremely new to ant script and i want to find out if my build is successful or not. my main target has two antcalls and i don't know how to check if they were successful or not, in order to evaluate the main target. run all is my main target <target name="run all"> <antcall target="Run basic configuration" /> <antcall target="Run custom configuration"/> i want to add a fail condition for the "run all" target. Each target does check individually if they are successful, but I want to know