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 74584ad commit d1edad3Copy full SHA for d1edad3
lib/elixir/lib/kernel/cli.ex
@@ -288,7 +288,7 @@ defmodule Kernel.CLI do
288
end
289
290
defp process_command({:app, app}, _config) when is_binary(app) do
291
- case :application.ensure_all_started(app) do
+ case :application.ensure_all_started(binary_to_atom(app)) do
292
{ :error, reason } ->
293
{ :error, "--app : Could not start application #{app}: #{inspect reason}" }
294
{ :ok, _ } ->
0 commit comments