Skip to content

Commit a6d85ff

Browse files
committed
fix: update option handling for unix
1 parent 1e93243 commit a6d85ff

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
@@ -223,7 +223,6 @@ defmodule Expert.EngineNode do
223223

224224
opts =
225225
[
226-
:stderr_to_stdout,
227226
args: [
228227
build_engine_script,
229228
"--source-path",
@@ -256,7 +255,7 @@ defmodule Expert.EngineNode do
256255
Process.flag(:trap_exit, true)
257256

258257
{:spawn_executable, launcher}
259-
|> Port.open(opts)
258+
|> Port.open([:stderr_to_stdout | opts])
260259
|> wait_for_engine()
261260
end
262261
|> Task.async()

0 commit comments

Comments
 (0)