Here I have problem in maven something like that
.....
<tasks>
<exec executable="subst" failonerror="false">
<arg line="f: c:\blabla"/>
</exec>
////// here the execution I try to make!
<exec executable="subst" failonerror="false" if=//before execution fails!>
<arg line="g: c:\blabla"/>
</exec>
<tasks>
I couldnt imagine how to run a command in case of another commands fail.
Thanks for your help