Browse Source

Merge pull request #824 from tsloughter/upgrade_source

include source the app is being ugpraded to, like with fetching, in info
pull/825/head
Fred Hebert 9 years ago
parent
commit
f7073eaf9b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_prv_install_deps.erl

+ 1
- 1
src/rebar_prv_install_deps.erl View File

@ -370,7 +370,7 @@ maybe_upgrade(AppInfo, AppDir, Upgrade, State) ->
true -> true ->
case rebar_fetch:needs_update(AppDir, Source, State) of case rebar_fetch:needs_update(AppDir, Source, State) of
true -> true ->
?INFO("Upgrading ~s", [rebar_app_info:name(AppInfo)]),
?INFO("Upgrading ~s (~p)", [rebar_app_info:name(AppInfo), rebar_app_info:source(AppInfo)]),
true = rebar_fetch:download_source(AppDir, Source, State); true = rebar_fetch:download_source(AppDir, Source, State);
false -> false ->
case Upgrade of case Upgrade of

Loading…
Cancel
Save