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=12511>.
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=12511

<concat> directive must have a newline





------- Additional Comments From [EMAIL PROTECTED]  2002-09-11 22:15 -------
I have started implementing an optional attribute, when I discovered that if 
the user specifies the encoding the concat task will have the requested 
behaviour if the encoding is set:

  <target name="concattest">
      <concat destfile="out">
          <fileset dir="input"/>
      </concat>
      <concat destfile="out2" encoding="ASCII">
          <fileset dir="input"/>
      </concat>
  </target>

[EMAIL PROTECTED] ~/a]$ ant -f test.xml concattest
Buildfile: test.xml

concattest:

BUILD SUCCESSFUL
Total time: 8 seconds
[EMAIL PROTECTED] ~/a]$ cat out
[EMAIL PROTECTED] ~/a]$ cat out2
a
b
[EMAIL PROTECTED] ~/a]$

The question is, is this a bug or a feature.

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

Reply via email to