Hi Friends,
As far as I knew, if we have "depends" in the target then that target
would run only once. But my target is running multiple times.

For example, I have this:

<target name="targetA">
</target>

<target name="targetB" depends="targetA">
</target>

The execution results as:
targetA
targetA
targetB

But I thought since "targetA" has already been executed it should show up as:

targetA
targetB

And only if targetA has not been executed before, then "targetB"
should execute "targetA" i.e again the same output

targetA
targetB

Please help me guys as to where my understanding is wrong.

Thanks
Mick

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

Reply via email to