I am trying to add to the below tag the code needed to delete some other files in other directories but do not seem to be having any luck.
 
<target name="clean" depends="init">
       <delete dir="${outputDir}"/>
</target>
 
I have tried what was suggested yesterday by adding something like:
 
<delete>
  <fileset dir="my-first-dir" />
  <fileset dir="my-other-dir">
    <include name="my-file" />
  </fileset>
</delete>

but still this does not seem to work.  Do I need a separate tag all together or can it be added to my clean tag?
 
Thank you.

Reply via email to