Skip to content

Commit

Permalink
[server] don't merge output lines (#11459)
Browse files Browse the repository at this point in the history
  • Loading branch information
kLabz authored Jan 3, 2024
1 parent 122ea09 commit c9e9459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/server.ml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ module Communication = struct
let create_pipe sctx write =
let rec self = {
write_out = (fun s ->
write ("\x01" ^ String.concat "\x01" (ExtString.String.nsplit s "\n") ^ "\n")
write ("\x01" ^ String.concat "\n\x01" (ExtString.String.nsplit s "\n") ^ "\n")
);
write_err = (fun s ->
write s
Expand Down

0 comments on commit c9e9459

Please sign in to comment.