RE: Avoid repeat of completed tasks

2005-10-12 Thread Uri Zeituni
Many thanks! This really works! Zeituni -Original Message- From: Nir Geier [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 12, 2005 10:54 AM To: Ant Users List Subject: RE: Avoid repeat of completed tasks You can do with a tiny workaround: define property that will be set once (in

RE: Avoid repeat of completed tasks

2005-10-12 Thread Nir Geier
You can do with a tiny workaround: define property that will be set once (in your "base" target) then in the tas check to see if the property is set using the unless statment <... unless="property.name"...> Then you run it only once. sample code: