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=25068>. 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=25068 Escape ", " separator in PatternSet [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Additional Comments From [EMAIL PROTECTED] 2003-11-28 15:52 ------- There is not need to do this as one can use the exclude element instead of the excludes attribute. <project default="copy"> <target name="copy"> <delete quiet="yes" dir="target"/> <delete quiet="yes" dir="source"/> <mkdir dir="target"/> <mkdir dir="source"/> <touch file="source/a,b"/> <touch file="source/a"/> <touch file="source/b"/> <copy todir="target"> <fileset dir="source"> <exclude name="*,*"/> </fileset> </copy> </target> </project> Marking this as WONTFIX --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]