We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c484a8c commit 6e93495Copy full SHA for 6e93495
rewatch/tests/utils.sh
@@ -39,6 +39,8 @@ normalize_paths() {
39
sed -i "s#\\\\#/#g" $1
40
# Finally remove any remaining drive letter paths (like D:/a/rescript/rescript/rewatch/testrepo)
41
sed -i "s#[A-Z]:/\(a/\)\?[^:]*rescript/rescript/rewatch/testrepo##g" $1
42
+ # Convert Unix line endings (LF) to Windows line endings (CRLF)
43
+ sed -i 's/$/\r/' $1
44
else
45
sed -i "s#$(pwd_prefix)##g" $1;
46
fi
0 commit comments