You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2003/01/27 20:42:15 UTC

DO NOT REPLY [Bug 16471] - delete task with nested fileset does not seem to be working

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16471>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16471

delete task with nested fileset does not seem to be working





------- Additional Comments From ddevienne@lgc.com  2003-01-27 19:42 -------
Try:

<delete>
   <fileset dir=".">
       <include name="build/com/mycorp/A.class"/>
       <include name="build/com/mycorp/B.class"/>
   </fileset>
</delete>

for better yet:
<delete>
   <fileset file="build/com/mycorp/A.class" />
   <fileset file="build/com/mycorp/B.class" />
</delete>

This should be faster. No search of all files in ".". --DD

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>