File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -316,6 +316,7 @@ encodeCommand options command =
316
316
command
317
317
|> commandEncoder options.interactiveSession options.pathToString
318
318
|> Json.encode 0
319
+ |> (\jsonStr -> jsonStr ++ "\n")
319
320
|> Bytes.fromString
320
321
321
322
@@ -325,7 +326,7 @@ commandEncoder interactive pathToString command =
325
326
Repl flags ->
326
327
Json.object
327
328
[ { key = "command", value = Json.string "repl" }
328
- , { key = "intepreter " , value = maybeEncoder Json.string flags.interpreter }
329
+ , { key = "interpreter " , value = maybeEncoder Json.string flags.interpreter }
329
330
, { key = "project-path", value = Json.string <| pathToString flags.projectPath }
330
331
, { key = "project-outline", value = Outline.toJson flags.outline }
331
332
, { key = "sources", value = Json.dict identity Json.string flags.rootSources }
You can’t perform that action at this time.
0 commit comments