Procházet zdrojové kódy

rebar_deps: fix overlong line introduced in 0b83339

pull/3/head
Tuncer Ayaz před 12 roky
rodič
revize
2faabf460d
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      src/rebar_deps.erl

+ 2
- 1
src/rebar_deps.erl Zobrazit soubor

@ -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,

Načítá se…
Zrušit
Uložit