summaryrefslogtreecommitdiff
path: root/src/rebar_core.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2017-11-02 12:52:55 -0400
committerGitHub <noreply@github.com>2017-11-02 12:52:55 -0400
commita1b1df4ac9ec1e51fac6a81dc80fa87a39316912 (patch)
tree8dcf23da9d018bb3337114e9fc10edd3b618f24d /src/rebar_core.erl
parent1f81293ef1a24c6091c02cc4055a58aab8e7be5a (diff)
parente57c8b74274cc43cc23ca0f4f76dd18f70a9241d (diff)
Merge pull request #1650 from ferd/prevent-crash-on-dup-plugin-paths
Prevent hard crash on duplicate plugin paths
Diffstat (limited to 'src/rebar_core.erl')
-rw-r--r--src/rebar_core.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl
index 3ef7a0d..6132a5e 100644
--- a/src/rebar_core.erl
+++ b/src/rebar_core.erl
@@ -136,6 +136,7 @@ process_command(State, Command) ->
do([], State) ->
{ok, State};
do([ProviderName | Rest], State) ->
+ ?DEBUG("Provider: ~p", [ProviderName]),
%% Special providers like 'as', 'do' or some hooks may be passed
%% as a tuple {Namespace, Name}, otherwise not. Handle them
%% on a per-need basis.