summaryrefslogtreecommitdiff
path: root/src/rebar_prv_install_deps.erl
diff options
context:
space:
mode:
authorTristan Sloughter <tristan.sloughter@gmail.com>2015-04-25 11:02:35 -0500
committerTristan Sloughter <tristan.sloughter@gmail.com>2015-04-25 11:02:35 -0500
commit521fc144ae1243f2a91008fbec8fe9e5c3996bfb (patch)
tree7bb61a1b5b5c5ad6fda4c8358880eefa3605c422 /src/rebar_prv_install_deps.erl
parent459746c5b1d8c1c18f2f419e5c7c4b3e5b98092a (diff)
parent164cff406335cf6aebfe6d30bc95e85c0d0915d1 (diff)
Merge pull request #371 from tsloughter/fetch_app_details
read in application details into app_info after fetch
Diffstat (limited to 'src/rebar_prv_install_deps.erl')
-rw-r--r--src/rebar_prv_install_deps.erl11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/rebar_prv_install_deps.erl b/src/rebar_prv_install_deps.erl
index 3cd030a..e25e2c5 100644
--- a/src/rebar_prv_install_deps.erl
+++ b/src/rebar_prv_install_deps.erl
@@ -386,7 +386,7 @@ maybe_fetch(AppInfo, Profile, Upgrade, Seen, State) ->
case fetch_app(AppInfo, AppDir, State) of
true ->
maybe_symlink_default(State, Profile, AppDir, AppInfo),
- {true, AppInfo};
+ {true, update_app_info(AppInfo)};
Other ->
{Other, AppInfo}
end;
@@ -553,6 +553,15 @@ fetch_app(AppInfo, AppDir, State) ->
Result
end.
+update_app_info(AppInfo) ->
+ AppDetails = rebar_app_info:app_details(AppInfo),
+ Applications = proplists:get_value(applications, AppDetails, []),
+ IncludedApplications = proplists:get_value(included_applications, AppDetails, []),
+ AppInfo1 = rebar_app_info:applications(
+ rebar_app_info:app_details(AppInfo, AppDetails),
+ IncludedApplications++Applications),
+ rebar_app_info:valid(AppInfo1, false).
+
maybe_upgrade(AppInfo, AppDir, false, State) ->
Source = rebar_app_info:source(AppInfo),
rebar_fetch:needs_update(AppDir, Source, State);