diff options
author | Andy Gross <andy@basho.com> | 2010-06-16 22:57:01 -0400 |
---|---|---|
committer | Andy Gross <andy@basho.com> | 2010-06-16 22:57:01 -0400 |
commit | b5d6fed2f671eb6b71012e5abfeb3cd088b3827e (patch) | |
tree | e9aa1fc6188f64f3cf1ebfe9c19200cada03ef21 /src | |
parent | 68c0def2507388ff985213f9fbf185520f3be824 (diff) |
fix call to dict:new (should be dict:from_list)
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_reltool.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_reltool.erl b/src/rebar_reltool.erl index 98fb68e..9891354 100644 --- a/src/rebar_reltool.erl +++ b/src/rebar_reltool.erl @@ -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} -> |