0

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!

xMichal
  • 624
  • 2
  • 7
  • 19

1 Answers1

0

I accept the comment of martin clayton as an answer:

A AND NOT B. See execute Ant task if TWO conditions are met

xMichal
  • 624
  • 2
  • 7
  • 19