We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9794dbf commit d653287Copy full SHA for d653287
1 file changed
js/common/repl-file-transfer.js
@@ -35,7 +35,7 @@ class FileTransferClient {
35
if (contents === null) {
36
return raw ? null : "";
37
}
38
- return contents;
+ return contents.replaceAll("\r\n", "\n");
39
40
41
async writeFile(path, offset, contents, modificationTime, raw = false) {
0 commit comments