diff options
author | Carlo Carraro <colrack@gmail.com> | 2017-03-05 11:14:45 +0100 |
---|---|---|
committer | Carlo Carraro <carlo.carraro@athonet.com> | 2017-03-05 20:13:16 +0100 |
commit | 3d9e5dff85fd4193f8aab7a6dbd0cffeeea0c1de (patch) | |
tree | c28da9eb223cff4449641e403db01f7250f76361 | |
parent | bd357bb5103b748148c979d6ecd00e7f31852fbc (diff) |
Properly warn on missing rebar3 deps: add inets
-rw-r--r-- | src/rebar3.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl index 5c593cc..1e1d0b0 100644 --- a/src/rebar3.erl +++ b/src/rebar3.erl @@ -344,7 +344,7 @@ start_and_load_apps(Caller) -> ensure_running(asn1, Caller), ensure_running(public_key, Caller), ensure_running(ssl, Caller), - inets:start(), + ensure_running(inets, Caller), inets:start(httpc, [{profile, rebar}]). %% @doc Make sure a required app is running, or display an error message |