Skip to content

Commit 56768ed

Browse files
committed
Always pass -noshell when starting iex, fix Erlang/OTP 25
1 parent 0a0a96e commit 56768ed

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

bin/elixir

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ SELF=$(readlink_f "$0")
218218
SCRIPT_PATH=$(dirname "$SELF")
219219

220220
if [ "$OSTYPE" = "cygwin" ]; then SCRIPT_PATH=$(cygpath -m "$SCRIPT_PATH"); fi
221-
if [ "$MODE" != "iex" ]; then ERL="-noshell -s elixir start_cli $ERL"; fi
221+
if [ "$MODE" != "iex" ]; then ERL="-s elixir start_cli $ERL"; fi
222222

223223
if [ "$OS" != "Windows_NT" ] && [ -z "$NO_COLOR" ]; then
224224
if test -t 1 -a -t 2; then ERL="-elixir ansi_enabled true $ERL"; fi
@@ -229,7 +229,7 @@ fi
229229
ERTS_BIN=
230230
ERTS_BIN="$ERTS_BIN"
231231

232-
set -- "$ERTS_BIN$ERL_EXEC" -elixir_root "$SCRIPT_PATH"/../lib -pa "$SCRIPT_PATH"/../lib/elixir/ebin $ELIXIR_ERL_OPTIONS $ERL "$@"
232+
set -- "$ERTS_BIN$ERL_EXEC" -noshell -elixir_root "$SCRIPT_PATH"/../lib -pa "$SCRIPT_PATH"/../lib/elixir/ebin $ELIXIR_ERL_OPTIONS $ERL "$@"
233233

234234
if [ -n "$RUN_ERL_PIPE" ]; then
235235
ESCAPED=""

bin/elixir.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,10 @@ if %errorlevel% == 0 (
162162
set beforeExtra=-elixir ansi_enabled true !beforeExtra!
163163
)
164164
if not defined useIEx (
165-
set beforeExtra=-noshell -s elixir start_cli !beforeExtra!
165+
set beforeExtra=-s elixir start_cli !beforeExtra!
166166
)
167167

168-
set beforeExtra=-elixir_root "!SCRIPT_PATH!..\lib" -pa "!SCRIPT_PATH!..\lib\elixir\ebin" !beforeExtra!
168+
set beforeExtra=-noshell -elixir_root "!SCRIPT_PATH!..\lib" -pa "!SCRIPT_PATH!..\lib\elixir\ebin" !beforeExtra!
169169

170170
if defined ELIXIR_CLI_DRY_RUN (
171171
if defined useWerl (

lib/iex/lib/iex/cli.ex

+11-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,17 @@ defmodule IEx.CLI do
1717

1818
:user.start()
1919

20-
# IEx.Broker is capable of considering all groups under user_drv but
21-
# when we use :user.start(), we need to explicitly register it instead.
22-
# If we don't register, pry doesn't work.
23-
:iex.start([register: true] ++ options(), {:elixir, :start_cli, []})
20+
spawn(fn ->
21+
:application.ensure_all_started(:iex)
22+
23+
case :init.notify_when_started(self()) do
24+
:started -> :ok
25+
_ -> :init.wait_until_started()
26+
end
27+
28+
:ok = :io.setopts(binary: true, encoding: :unicode)
29+
IEx.Server.run_from_shell([register: true] ++ options(), {:elixir, :start_cli, []})
30+
end)
2431
end
2532
end
2633

0 commit comments

Comments
 (0)