Title: RE: Deleting directories

>>>>       <delete>
>>          <fileset dir="**/CVS/**" />
>>       </delete>

The 'dir' attribute should specify the base directory that you want to delete.  It should not contain any patterns.

Change your delete task to this:

<delete>
        <fileset dir="whatever_your_base_dir_is" includes="**/CVS/**" />
</delete>


Brett

Reply via email to