Browse Source

don't attempt to merge locks when there are no dependencies

fixes #172
pull/173/head
alisdair sullivan 10 years ago
parent
commit
04235f1a63
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_config.erl

+ 1
- 1
src/rebar_config.erl View File

@ -60,7 +60,7 @@ consult_file(File) ->
end
end.
merge_locks(Config, []) ->
merge_locks(Config, [[]]) ->
Config;
merge_locks(Config, [Locks]) ->
{deps, ConfigDeps} = lists:keyfind(deps, 1, Config),

Loading…
Cancel
Save