diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-05-13 19:26:29 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-05-13 19:30:38 +0200 |
commit | 32ddef7158aa66e1a39160108dd769f9205111ee (patch) | |
tree | 2461bd780e7810e713173b2159907da730ca4609 /src | |
parent | e6d5a494b047566ece90ef8c8ab52bcbefb75053 (diff) |
Remove alt_url support in favor of new features
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_deps.erl | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/rebar_deps.erl b/src/rebar_deps.erl index c64d761..8a8e26f 100644 --- a/src/rebar_deps.erl +++ b/src/rebar_deps.erl @@ -229,30 +229,15 @@ find_deps(Mode, [App | Rest], Acc) when is_atom(App) -> find_deps(Mode, [{App, VsnRegex} | Rest], Acc) when is_atom(App) -> find_deps(Mode, [{App, VsnRegex, undefined} | Rest], Acc); find_deps(Mode, [{App, VsnRegex, Source} | Rest], Acc) -> - find_deps(Mode, [{App, VsnRegex, Source, []} | Rest], Acc); -find_deps(Mode, [{App, VsnRegex, Source, Opts} | Rest], Acc) -> Dep = #dep { app = App, vsn_regex = VsnRegex, - source = get_source(Source, Opts) }, + source = Source }, {Availability, FoundDir} = find_dep(Dep), find_deps(Mode, Rest, acc_deps(Mode, Availability, Dep, FoundDir, Acc)); find_deps(_Mode, [Other | _Rest], _Acc) -> ?ABORT("Invalid dependency specification ~p in ~s\n", [Other, rebar_utils:get_cwd()]). -get_source(undefined, _Opts) -> - undefined; -get_source(Source, Opts) -> - setelement(2, Source, dep_url(element(2, Source), Opts)). - -dep_url(Url, Opts) -> - case rebar_config:get_global(alt_urls, "false") of - "true" -> - proplists:get_value(alt_url, Opts, Url); - "false" -> - Url - end. - find_dep(Dep) -> %% Find a dep based on its source, %% e.g. {git, "https://github.com/mochi/mochiweb.git", "HEAD"} |