mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
fix call to dict:new (should be dict:from_list)
This commit is contained in:
parent
68c0def250
commit
b5d6fed2f6
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ run_reltool(Server, Config, ReltoolConfig) ->
|
|||
%% Load up any variables specified by overlay_vars
|
||||
OverlayVars = case overlay_vars(ReltoolConfig) of
|
||||
undefined ->
|
||||
dict:new(OverlayVars0);
|
||||
dict:from_list(OverlayVars0);
|
||||
File ->
|
||||
case file:consult(File) of
|
||||
{ok, Terms} ->
|
||||
|
|
Loading…
Reference in a new issue