Github user Tunaki commented on the issue:
https://github.com/apache/maven/pull/127
This doesn't seem to work on CRLF files on Git Bash (or Ubuntu). Result is
the same as with `tr`.
```sh
$ echo -e "Foo\nBar" > test.txt
$ cat -e test.txt
Foo$
Bar$
$ paste -s -d' ' test.txt
Foo Bar
$ unix2dos test.txt
unix2dos: converting file test.txt to DOS format ...
$ cat -e test.txt
Foo^M$
Bar^M$
$ paste -s -d' ' test.txt
Bar
```
When the line endings were changed to Windows format, only the last line
was kept.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]