Hi,

I need to run some target even if one of them was fail.

can we run a target and continue if it was fail.

I need to run mail target from the same build xmlfile in case of another target was 
fail.


         <target name="check.error"  >          
                        <fail message="mmm"/>
                        <property name="lll" value="aaa"/>
        </target>

         <target name="a" depends="check.error" if="lll">               
                <antcall target="sendmail"/>
        </target>

regards zacky

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to