I have something like this:
<target name="X" if="A" unless="B">...</target>
Now I need to understand how is this condition evaluated. Is it:
if (A AND NOT B)
Or is it:
if (A OR NOT B)
Thanks!
I have something like this:
<target name="X" if="A" unless="B">...</target>
Now I need to understand how is this condition evaluated. Is it:
if (A AND NOT B)
Or is it:
if (A OR NOT B)
Thanks!
I accept the comment of martin clayton as an answer:
A AND NOT B. See execute Ant task if TWO conditions are met