diff options
author | Tristan Sloughter <tristan.sloughter@gmail.com> | 2015-07-02 10:05:14 -0500 |
---|---|---|
committer | Tristan Sloughter <tristan.sloughter@gmail.com> | 2015-07-02 10:05:14 -0500 |
commit | d9e7cb4d2646d7ca861b8803d6d0d3a380aeb93d (patch) | |
tree | 2853bc31a439cf3a3e10dc9ea237280895352cfa /src/rebar_plugins.erl | |
parent | cfea721d98469c58953436d27a7663fdd19dfd3f (diff) | |
parent | 7840a93e859e939f5dae92d026d5a008435bc56f (diff) |
Merge pull request #2 from ferd/deps_install_refactor
Minor refactors
Diffstat (limited to 'src/rebar_plugins.erl')
-rw-r--r-- | src/rebar_plugins.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_plugins.erl b/src/rebar_plugins.erl index 0f3cafc..3e855de 100644 --- a/src/rebar_plugins.erl +++ b/src/rebar_plugins.erl @@ -63,7 +63,7 @@ handle_plugins(Profile, Plugins, State, Upgrade) -> handle_plugin(Profile, Plugin, State, Upgrade) -> try - {Apps, State2} = rebar_prv_install_deps:handle_profile_deps(Profile, State, [Plugin], Upgrade), + {Apps, State2} = rebar_prv_install_deps:handle_deps_as_profile(Profile, State, [Plugin], Upgrade), {no_cycle, Sorted} = rebar_prv_install_deps:find_cycles(Apps), ToBuild = rebar_prv_install_deps:cull_compile(Sorted, []), |