Browse Source

Ignore rebar3 plugins for the time being

Until it is found that one is needed to compile a project.
Loïc Hoguin 6 years ago
parent
commit
037ab74c1f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      core/deps.mk

+ 2 - 1
core/deps.mk

@@ -481,7 +481,8 @@ define dep_autopatch_rebar.erl
 	fun() ->
 	fun() ->
 		case lists:keyfind(plugins, 1, Conf) of
 		case lists:keyfind(plugins, 1, Conf) of
 			false -> ok;
 			false -> ok;
-			{_, Plugins} ->
+			{_, Plugins0} ->
+				Plugins = [P || P <- Plugins0, is_atom(P)],
 				[begin
 				[begin
 					case lists:keyfind(deps, 1, Conf) of
 					case lists:keyfind(deps, 1, Conf) of
 						false -> ok;
 						false -> ok;