You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bug symfony#54001 [Console] Fix display of Table on Windows OS (VincentLanglet)
This PR was squashed before being merged into the 5.4 branch.
Discussion
----------
[Console] Fix display of Table on Windows OS
| Q | A
| ------------- | ---
| Branch? | 5.4
| Bug fix? | yes
| New feature? | no
| Deprecations? | no
| Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exists, explain below instead -->
| License | MIT
When running a console on a Windows environment lines endings are `\r\n` instead of `\n`.
In the Table, when adding space at the end of the line, all the line manipulations are done on `\n` which breaks line endings regularly changing `\r\n` to `\r (lot of spaces) \n` instead of `(lot of spaces) \r\n`.
Commits
-------
56e8692 [Console] Fix display of Table on Windows OS
0 commit comments