Skip to content
Snippets Groups Projects
Commit 942ee87a authored by Patrick Baudin's avatar Patrick Baudin
Browse files

[Server] adds a final eol to json output

parent d2a072a8
No related branches found
No related tags found
No related merge requests found
...@@ -117,6 +117,7 @@ let execute () = ...@@ -117,6 +117,7 @@ let execute () =
Senv.feedback "Output %S" output ; Senv.feedback "Output %S" output ;
let out = open_out output in let out = open_out output in
Js.pretty_to_channel out response ; Js.pretty_to_channel out response ;
output_char out '\n';
close_out out close_out out
end files end files
end end
......
...@@ -100,4 +100,4 @@ ...@@ -100,4 +100,4 @@
"data": "h" "data": "h"
} }
} }
] ]
\ No newline at end of file
[ { "id": "getLogs", "data": [] }, { "id": "setLogs", "data": null } ] [ { "id": "getLogs", "data": [] }, { "id": "setLogs", "data": null } ]
\ No newline at end of file
...@@ -11,4 +11,4 @@ ...@@ -11,4 +11,4 @@
"comment": "ident is expected, object is given" "comment": "ident is expected, object is given"
} }
} }
] ]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment