Hello,
I would like to know what will be the flow in this case
<target name="prepare-compile-else" unless="files.from.pvcs" depends="prepare">
is the same that
<target name="prepare-compile-else" depends="prepare" unless="files.from.pvcs" >
??
What I have seen is that it always execute firs the "depends " and then the "If" or "unless", is that true?
Is there any way to execute in the other way?
Thanks in advance,
Natalia