diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-09-17 22:00:28 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-09-17 22:00:28 -0500 |
commit | 8de7a609ffbfa9e7d1539de3ad420413326b85c0 (patch) | |
tree | 64b4696ffc089d5513d7ee39ddb43f36b1037a05 /src | |
parent | 2357bdf67f2dd95468f07dea7acfa218e7d0d039 (diff) |
fix ct test for new command handling
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar3.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl index f29eaec..dcd78f7 100644 --- a/src/rebar3.erl +++ b/src/rebar3.erl @@ -141,7 +141,7 @@ run_aux(State, Args) -> {ok, Providers} = application:get_env(rebar, providers), State3 = rebar_state:create_logic_providers(Providers, State2), Task = rebar_state:get(State3, task, "help"), - rebar_core:process_command(rebar_state:command_args(State3, Args), ec_cnv:to_atom(Task)), + rebar_core:process_command(rebar_state:command_args(State3, Args), list_to_atom(Task)), ok. %% |