aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2017-03-20 16:17:32 -0700
committerGitHub <[email protected]>2017-03-20 16:17:32 -0700
commitc1e37960af7dc23513f7c6dbc8d711dc30050e84 (patch)
treeda13d712f381b04bed63ed4e96e59e76982082a8 /src
parentaff9fca98f84f8031696a96d85a57eb398355f35 (diff)
parent3a5137a9dca04c02b52d787aaec6630e721d0e08 (diff)
downloadrelx-c1e37960af7dc23513f7c6dbc8d711dc30050e84.tar.gz
relx-c1e37960af7dc23513f7c6dbc8d711dc30050e84.tar.bz2
relx-c1e37960af7dc23513f7c6dbc8d711dc30050e84.zip
Merge pull request #567 from lrascao/feature/empty_application_apps_silently_skippedv3.22.4v3.22.3
Ensure stdlib,kernel as application dependencies
Diffstat (limited to 'src')
-rw-r--r--src/rlx_app_discovery.erl12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/rlx_app_discovery.erl b/src/rlx_app_discovery.erl
index 56ac59c..aab1d3b 100644
--- a/src/rlx_app_discovery.erl
+++ b/src/rlx_app_discovery.erl
@@ -293,10 +293,20 @@ get_vsn(AppDir, AppName, AppDetail) ->
-spec get_deps(binary(), atom(), string(), proplists:proplist()) ->
{ok, rlx_app_info:t()} | {error, Reason::term()}.
get_deps(AppDir, AppName, AppVsn, AppDetail) ->
- ActiveApps = proplists:get_value(applications, AppDetail, []),
+ %% ensure that at least stdlib and kernel are defined as application deps
+ ActiveApps = ensure_stdlib_kernel(AppName,
+ proplists:get_value(applications, AppDetail, [])),
LibraryApps = proplists:get_value(included_applications, AppDetail, []),
rlx_app_info:new(AppName, AppVsn, AppDir, ActiveApps, LibraryApps).
+-spec ensure_stdlib_kernel(AppName :: atom(),
+ Apps :: list(atom())) -> list(atom()).
+ensure_stdlib_kernel(kernel, Deps) -> Deps;
+ensure_stdlib_kernel(stdlib, Deps) -> Deps;
+ensure_stdlib_kernel(_AppName, Deps) ->
+ %% ensure that stdlib and kernel are the first deps
+ [kernel, stdlib | Deps -- [stdlib, kernel]].
+
%%%===================================================================
%%% Test Functions
%%%===================================================================