On 6/12/07, Rebhan, Gilbert <[EMAIL PROTECTED]> wrote:
combine it with a condition, example =

<!-- Check ob Modul bereits verarbeitet -->
<target name="check_erl">
   <condition property="${mname}.done">
     <available file="${ant.working.dir}/${mname}_script.params" />
   </condition>
 </target>

and make your copy target depend on the target with condtion and unless

<!-- Subroutine fuer Module mit Liefertyp build -->
<target name="build" depends="check_erl" unless="${mname}.done">
...
</target>

That's fine for one file, but cp -r tranverses a directory tree of
1000's of files. What's the ant equivalent of cp -r --reply=no?


Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
m: 0415 469 095
www.flashdev.org.au

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

Reply via email to