我在Windows上运行ant 1.9.4。 eol选项似乎无法正常工作。 我试过了:
<concat destfile="${result.file}" append="true" fixlastline="yes" eol="crlf">SUCCESS</concat>
和
<concat destfile="${result.file}" append="true" fixlastline="true" eol="crlf">SUCCESS</concat>
我做错了什么? 谢谢 贝
答案 0 :(得分:4)
documentation对fixlastline
属性说明了以下内容:
此属性不适用于嵌入文本。
您可以使用line.separator
属性:
<concat destfile="out.txt" append="true">SUCCESS${line.separator}</concat>