summaryrefslogtreecommitdiff
path: root/src/rebar_core.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar_core.erl')
-rw-r--r--src/rebar_core.erl12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl
index b82bfc0..fa0e459 100644
--- a/src/rebar_core.erl
+++ b/src/rebar_core.erl
@@ -40,13 +40,15 @@ process_command(State, Command) ->
not_found ->
{error, io_lib:format("Command ~p not found", [Command])};
CommandProvider ->
- Profile = providers:profile(CommandProvider),
- State1 = rebar_state:apply_profiles(State, [Profile]),
- Opts = providers:opts(CommandProvider)++rebar3:global_option_spec_list(),
case Command of
- do ->
- do(TargetProviders, State1);
+ Command when Command =:= do
+ ; Command =:= as ->
+ do(TargetProviders, State);
_ ->
+ Profile = providers:profile(CommandProvider),
+ State1 = rebar_state:apply_profiles(State, [Profile]),
+ Opts = providers:opts(CommandProvider)++rebar3:global_option_spec_list(),
+
case getopt:parse(Opts, rebar_state:command_args(State1)) of
{ok, Args} ->
State2 = rebar_state:command_parsed_args(State1, Args),