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 24e63cc commit fcea4b4Copy full SHA for fcea4b4
lib/iex/lib/iex/helpers.ex
@@ -1035,6 +1035,9 @@ defmodule IEx.Helpers do
1035
1036
{:error, :enoent} ->
1037
IO.puts(IEx.color(:eval_error, "No directory #{directory}"))
1038
+
1039
+ {:error, reason} ->
1040
+ IO.puts(IEx.color(:eval_error, :file.format_error(reason)))
1041
end
1042
1043
dont_display_result()
@@ -1079,6 +1082,9 @@ defmodule IEx.Helpers do
1079
1082
1080
1083
{:error, :enotdir} ->
1081
1084
IO.puts(IEx.color(:eval_info, Path.absname(path)))
1085
1086
1087
1088
1089
1090
0 commit comments