You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by Jakob Ramskov <co...@ramosa.com> on 2000/06/18 03:59:33 UTC

bug with Copydir

in my "src" dir I have these files:

com (packagedir)
Lexicon_da.properties
Lexicon_en.properties
Lexicon_fr.properties
index.html

Then I add this to my build.xml:

<copydir src="src"
              dest="${deploy.dir}"
              includes="*.properties"              
              excludes="*.html" />

yet, index.html is copied each time.. Is it a bug, or me doing it wrong? I also tried **/*.html

- Ramosa