Переглянути джерело

Merge pull request #108 from tuncer/dialyzer

dialyzer_reference plus one minor patch
pull/3/head
Dave Smith 12 роки тому
джерело
коміт
d3c7be265d
2 змінених файлів з 3 додано та 2 видалено
  1. +1
    -1
      dialyzer_reference
  2. +2
    -1
      src/rebar_deps.erl

+ 1
- 1
dialyzer_reference Переглянути файл

@ -1,3 +1,3 @@
rebar_eunit.erl:388: Call to missing or unexported function eunit_test:function_wrapper/2
rebar_utils.erl:162: Call to missing or unexported function escript:foldl/3
rebar_utils.erl:163: Call to missing or unexported function escript:foldl/3

+ 2
- 1
src/rebar_deps.erl Переглянути файл

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

Завантаження…
Відмінити
Зберегти