Ver a proveniência

Allow crypto to already be loaded when starting rebar

pull/3/head
Kresten Krab Thorup há 14 anos
committed by Dave Smith
ascendente
cometimento
b890421cae
1 ficheiros alterados com 4 adições e 1 eliminações
  1. +4
    -1
      src/rebar.erl

+ 4
- 1
src/rebar.erl Ver ficheiro

@ -95,7 +95,10 @@ run_aux(["version"]) ->
ok;
run_aux(Commands) ->
%% Make sure crypto is running
ok = crypto:start(),
case crypto:start() of
ok -> ok;
{error,{already_started,crypto}} -> ok
end,
%% Initialize logging system
rebar_log:init(),

Carregando…
Cancelar
Guardar