Hi all,

I need to create a goal that deletes all CVS folders from my project and nothing more.
I wrote the following script but it's not doing anything:
<goal name="delete-cvs-info">
       <!--
       <ant:delete failonerror="false">
         <fileset dir="." includes="CVS*,**/CVS*"/>
       </ant:delete>
       -->
       <move todir="tmp/CVS">
           <fileset dir=".">
                 <include name="CVS,**/CVS*, **/CVS, **/CVS/*"/>
           </fileset>
        </move>
   </goal>

Can someone help me?

 Thanks a lot,

Sergiu


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

Reply via email to