Browse Source

fix call to dict:new (should be dict:from_list)

pull/3/head
Andy Gross 15 years ago
parent
commit
b5d6fed2f6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_reltool.erl

+ 1
- 1
src/rebar_reltool.erl View File

@ -187,7 +187,7 @@ run_reltool(Server, Config, ReltoolConfig) ->
%% Load up any variables specified by overlay_vars %% Load up any variables specified by overlay_vars
OverlayVars = case overlay_vars(ReltoolConfig) of OverlayVars = case overlay_vars(ReltoolConfig) of
undefined -> undefined ->
dict:new(OverlayVars0);
dict:from_list(OverlayVars0);
File -> File ->
case file:consult(File) of case file:consult(File) of
{ok, Terms} -> {ok, Terms} ->

Loading…
Cancel
Save