mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Bugfix call to lists:member/2 in ulist/2
Change from lists:is_member/2 to lists:member/2, since the former doesn't exist (the bug only affects rebar_plugins).
This commit is contained in:
parent
b5d6fed2f6
commit
4dae6318aa
1 changed files with 1 additions and 1 deletions
|
@ -462,7 +462,7 @@ ulist(L) ->
|
|||
ulist([], Acc) ->
|
||||
lists:reverse(Acc);
|
||||
ulist([H | T], Acc) ->
|
||||
case lists:is_member(H, Acc) of
|
||||
case lists:member(H, Acc) of
|
||||
true ->
|
||||
ulist(T, Acc);
|
||||
false ->
|
||||
|
|
Loading…
Reference in a new issue