Skip to content

Commit 618e1fc

Browse files
committed
fix: update option handling for unix
1 parent 0f8e3b1 commit 618e1fc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/expert/lib/expert/engine_node.ex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,6 @@ defmodule Expert.EngineNode do
255255

256256
opts =
257257
[
258-
:stderr_to_stdout,
259258
args: [
260259
build_engine_script,
261260
"--source-path",
@@ -288,7 +287,7 @@ defmodule Expert.EngineNode do
288287
Process.flag(:trap_exit, true)
289288

290289
{:spawn_executable, launcher}
291-
|> Port.open(opts)
290+
|> Port.open([:stderr_to_stdout | opts])
292291
|> wait_for_engine()
293292
end
294293
|> Task.async()

0 commit comments

Comments
 (0)