summaryrefslogtreecommitdiff
path: root/src/rebar3.erl
diff options
context:
space:
mode:
authorTristan Sloughter <tristan.sloughter@gmail.com>2015-09-25 23:16:40 -0500
committerTristan Sloughter <tristan.sloughter@gmail.com>2015-09-25 23:16:40 -0500
commit7ec6dd725ae3029beb8baa80dcc89e3b572316cb (patch)
tree37dbe333db2fbbff64b043c8acaeaa6d07754546 /src/rebar3.erl
parent4d45f27955eb0b05d4a5cd389e33edcf99831709 (diff)
parent6a4b5428b3fa67ba6b1fdb5dd6cc896128b331c0 (diff)
Merge pull request #838 from rebar/detect-self-deps-missing
Properly warn on missing rebar3 deps
Diffstat (limited to 'src/rebar3.erl')
-rw-r--r--src/rebar3.erl33
1 files changed, 23 insertions, 10 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl
index aae9ec0..9aad909 100644
--- a/src/rebar3.erl
+++ b/src/rebar3.erl
@@ -64,7 +64,7 @@ main(Args) ->
%% Erlang-API entry point
run(BaseState, Commands) ->
- start_and_load_apps(),
+ start_and_load_apps(api),
BaseState1 = rebar_state:set(BaseState, task, Commands),
BaseState2 = rebar_state:set(BaseState1, caller, api),
@@ -78,7 +78,7 @@ run(BaseState, Commands) ->
%% ====================================================================
run(RawArgs) ->
- start_and_load_apps(),
+ start_and_load_apps(command_line),
BaseState = init_config(),
BaseState1 = rebar_state:set(BaseState, caller, command_line),
@@ -272,19 +272,32 @@ handle_error(Error) ->
?INFO("When submitting a bug report, please include the output of `rebar3 report \"your command\"`", []),
erlang:halt(1).
-start_and_load_apps() ->
+start_and_load_apps(Caller) ->
_ = application:load(rebar),
%% Make sure crypto is running
- case crypto:start() of
- ok -> ok;
- {error,{already_started,crypto}} -> ok
- end,
- application:start(asn1),
- application:start(public_key),
- application:start(ssl),
+ ensure_running(crypto, Caller),
+ ensure_running(asn1, Caller),
+ ensure_running(public_key, Caller),
+ ensure_running(ssl, Caller),
inets:start(),
inets:start(httpc, [{profile, rebar}]).
+ensure_running(App, Caller) ->
+ case application:start(App) of
+ ok -> ok;
+ {error, {already_started, App}} -> ok;
+ {error, Reason} ->
+ %% These errors keep rebar3's own configuration to be loaded,
+ %% which disables the log level and causes a failure without
+ %% showing the error message. Bypass this entirely by overriding
+ %% the default value (which allows logging to take place)
+ %% and shut things down manually.
+ Log = ec_cmd_log:new(warn, Caller),
+ ec_cmd_log:error(Log, "Rebar dependency ~p could not be loaded "
+ "for reason ~p~n", [App, Reason]),
+ throw(rebar_abort)
+ end.
+
state_from_global_config(Config, GlobalConfigFile) ->
rebar_utils:set_httpc_options(),
GlobalConfigTerms = rebar_config:consult_file(GlobalConfigFile),