Hi folks,
I have following ant script which copy files by patterns given in .cvsignore :
<project default="compile">
<target name="compile">
<copy todir="c:\temp\output">
<fileset dir=".">
<includesfile name=".cvsignore"/>
</fileset>
</copy>
</target>
</project>
Everything works well but it copies only files in root (.) directory not in its subdirectories. Can you help me?