Skip to content

Commit

Permalink
Merge pull request rebar#108 from tuncer/dialyzer
Browse files Browse the repository at this point in the history
dialyzer_reference plus one minor patch
  • Loading branch information
dizzyd committed Jun 29, 2013
2 parents 2a4350b + 2faabf4 commit d3c7be2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dialyzer_reference
@@ -1,3 +1,3 @@


rebar_eunit.erl:388: Call to missing or unexported function eunit_test:function_wrapper/2 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
3 changes: 2 additions & 1 deletion src/rebar_deps.erl
Expand Up @@ -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, 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, []} | 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, Dep = #dep { app = App,
vsn_regex = VsnRegex, vsn_regex = VsnRegex,
source = Source, source = Source,
Expand Down

0 comments on commit d3c7be2

Please sign in to comment.