mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Fix unused var warning
This commit is contained in:
parent
8a3ad89f7c
commit
23781ae460
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ merge_each_var([{Key, Value} | Rest], Vars) ->
|
|||
expand_vars_loop(Vars) ->
|
||||
expand_vars_loop(Vars, 10).
|
||||
|
||||
expand_vars_loop(Vars0, 0) ->
|
||||
expand_vars_loop(_, 0) ->
|
||||
?ABORT("Max. expansion reached for ENV vars!\n", []);
|
||||
expand_vars_loop(Vars0, Count) ->
|
||||
Vars = lists:foldl(fun({Key, Value}, Acc) ->
|
||||
|
|
Loading…
Reference in a new issue