mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
rebar_deps: fix overlong line introduced in 0b83339
This commit is contained in:
parent
3952806f5f
commit
2faabf460d
1 changed files with 2 additions and 1 deletions
|
@ -308,7 +308,8 @@ find_deps(Config, Mode, [{App, VsnRegex} | Rest], Acc) when is_atom(App) ->
|
|||
find_deps(Config, Mode, [{App, VsnRegex, undefined} | Rest], Acc);
|
||||
find_deps(Config, Mode, [{App, VsnRegex, Source} | Rest], Acc) ->
|
||||
find_deps(Config, Mode, [{App, VsnRegex, Source, []} | Rest], Acc);
|
||||
find_deps(Config, Mode, [{App, VsnRegex, Source, Opts} | Rest], Acc) when is_list(Opts) ->
|
||||
find_deps(Config, Mode, [{App, VsnRegex, Source, Opts} | Rest], Acc)
|
||||
when is_list(Opts) ->
|
||||
Dep = #dep { app = App,
|
||||
vsn_regex = VsnRegex,
|
||||
source = Source,
|
||||
|
|
Loading…
Reference in a new issue