I have an Ant target that performs 2 steps in a sequence:
<target name="release"> <antcall target="-compile"/> <antcall target="-post-compile"/> </target>
With the above script, it exits immediately if the -compile target does not work. "-post-compile" does not get the ability to run. Is there a way to make sure that the second step (-post-compile) is executed even if the 1st (-compile) crashes?
source share