Skip to content

Commit 173fc52

Browse files
committed
Fix IEx --remsh on Erlang/OTP 25-
Closes #12746.
1 parent 7f7a8bc commit 173fc52

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/iex/lib/iex/cli.ex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ defmodule IEx.CLI do
8989
spawn_link(fn ->
9090
receive do
9191
{:begin, ^ref, other} ->
92-
{:ok, _} = Application.ensure_all_started(:elixir)
93-
System.wait_until_booted()
92+
:elixir.start_cli()
9493
send(other, {:done, ref})
9594
end
9695
end)

0 commit comments

Comments
 (0)