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
fix: ensure consistent line endings in git fallback strategy
Fixed an issue where tests would fail on GitHub Windows runners but pass on local Windows machines due to line ending differences. The fix ensures consistent line ending handling by:
1. Normalizing CRLF to LF when reading files in the git fallback strategy
2. Disabling Git's automatic line ending conversion
3. Maintaining consistent line ending usage throughout text operations
fix: ensure consistent line endings in git fallback strategy
6
+
7
+
Fixed a cross-platform issue where tests would fail on GitHub Windows runners but pass on local Windows machines due to line ending differences. The fix ensures consistent line ending handling by:
8
+
9
+
1. Normalizing CRLF to LF when reading files in the git fallback strategy
10
+
2. Disabling Git's automatic line ending conversion using core.autocrlf setting
11
+
3. Maintaining consistent line ending usage throughout the text operations
0 commit comments