Subject: | Inconsistent newlines in SOAP::WSDL |
We are currently importing new versions of SOAP::WSDL into our SVN
repositories. SVN complains that the newlines at end of files are
inconsistent. It appears that files are in mixed modes, sometimes the
newline is just \x0a, sometimes it's \x0d\x0a. I think one should go for
either MS-DOS newlines or Unix newlines; this mixture needs to go.
A probable way to fix the problem is to run something like,
perl -pi -e 's/\r//' *.pm */*.pm */*/*.pm */*/*/*.pm
until the directories run out, and do the same for the .pod files.