Skip to content

Commit

Permalink
Replace crypto:start() with application:start(crypto).
Browse files Browse the repository at this point in the history
Likely related to erlang/otp#8562
  • Loading branch information
nickva committed Jul 11, 2024
1 parent 7b084c7 commit 9e60c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rebar.erl
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ profile(_Config, _Commands, Profiler) ->

run_aux(BaseConfig, Commands) ->
%% Make sure crypto is running
case crypto:start() of
case application:start(crypto) of
ok -> ok;
{error,{already_started,crypto}} -> ok
end,
Expand Down

0 comments on commit 9e60c70

Please sign in to comment.