We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac947a5 commit b37ecb0Copy full SHA for b37ecb0
lib/iex/lib/iex/cli.ex
@@ -53,6 +53,13 @@ defmodule IEx.CLI do
53
if tty_works?() do
54
:user_drv.start([:"tty_sl -c -e", tty_args()])
55
else
56
+ if get_remsh(:init.get_plain_arguments()) do
57
+ IO.puts(
58
+ :stderr,
59
+ "warning: the --remsh option will be ignored because IEx is running on limited shell"
60
+ )
61
+ end
62
+
63
:application.set_env(:stdlib, :shell_prompt_func, {__MODULE__, :prompt})
64
:user.start()
65
local_start()
0 commit comments