aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-11-29 23:28:22 +0100
committerLoïc Hoguin <[email protected]>2018-11-29 23:28:22 +0100
commit037ab74c1f5d980e66f1d460de87c7cccd086316 (patch)
treeda4d7b57cd1f617a908475671c9538364a6bab12
parent305080b98a4312591efe03872be99951ac09da6e (diff)
downloaderlang.mk-037ab74c1f5d980e66f1d460de87c7cccd086316.tar.gz
erlang.mk-037ab74c1f5d980e66f1d460de87c7cccd086316.tar.bz2
erlang.mk-037ab74c1f5d980e66f1d460de87c7cccd086316.zip
Ignore rebar3 plugins for the time being
Until it is found that one is needed to compile a project.
-rw-r--r--core/deps.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/deps.mk b/core/deps.mk
index 2591f88..225ecb4 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -481,7 +481,8 @@ define dep_autopatch_rebar.erl
fun() ->
case lists:keyfind(plugins, 1, Conf) of
false -> ok;
- {_, Plugins} ->
+ {_, Plugins0} ->
+ Plugins = [P || P <- Plugins0, is_atom(P)],
[begin
case lists:keyfind(deps, 1, Conf) of
false -> ok;