summaryrefslogtreecommitdiff
path: root/src/rebar.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar.erl')
-rw-r--r--src/rebar.erl6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rebar.erl b/src/rebar.erl
index c87e591..d35e492 100644
--- a/src/rebar.erl
+++ b/src/rebar.erl
@@ -205,6 +205,12 @@ profile(_Config, _Commands, Profiler) ->
?ABORT("Unsupported profiler: ~s~n", [Profiler]).
run_aux(BaseConfig, Commands) ->
+ %% Make sure crypto is running
+ case crypto:start() of
+ ok -> ok;
+ {error,{already_started,crypto}} -> ok
+ end,
+
%% Make sure memoization server is running
case rmemo:start() of
{ok, _} -> ok;