summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-09-24 20:40:39 -0500
committerTristan Sloughter <t@crashfast.com>2015-09-24 20:40:49 -0500
commit3b0584abd63f412e124faa117777c3c9030754db (patch)
treea499f3cd811c1552e75aef5ebd6c1808b90c6674 /src
parent762e8da4d383f38b9afe6002067f4fac3ecf90a8 (diff)
handle newly added deps to config even when lock is empty
Diffstat (limited to 'src')
-rw-r--r--src/rebar_config.erl3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rebar_config.erl b/src/rebar_config.erl
index 15797da..61301cb 100644
--- a/src/rebar_config.erl
+++ b/src/rebar_config.erl
@@ -86,9 +86,6 @@ verify_config_format([Term | _]) ->
%% no lockfile
merge_locks(Config, []) ->
Config;
-%% empty lockfile
-merge_locks(Config, [[]]) ->
- Config;
%% lockfile with entries
merge_locks(Config, [Locks]) ->
ConfigDeps = proplists:get_value(deps, Config, []),