Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.5, 2.5.1, 2.5.2, 2.5.3
-
None
-
None
Description
when lineEnding=unix the conversion is not correct if the file contains CR end of line characters. The EOL characters are removed
Example on a file containing the text:
MKDIR,/apps/myapp/<CR>
MKDIR,/apps/myapp/repbatch/scripts/eod/<CR>
MKDIR,/apps/myapp/repbatch//scripts/eod/log/<CR>
MKDIR,/apps/myapp/repbatch/scripts/cre/<CR>
We should expect this:
MKDIR,/apps/myapp/<LF>
MKDIR,/apps/myapp/repbatch/scripts/eod/<LF>
MKDIR,/apps/myapp/repbatch//scripts/eod/log/<LF>
MKDIR,/apps/myapp/repbatch/scripts/cre/<LF>
The result is :
MKDIR,/apps/myapp/MKDIR,/apps/myapp/repbatch/scripts/eod/MKDIR,/apps/myapp/repbatch//scripts/eod/log/MKDIR,/apps/myapp/repbatch/scripts/cre/
See zip attachment.