summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2009-12-09 21:59:58 -0700
committerDave Smith <dizzyd@dizzyd.com>2009-12-09 21:59:58 -0700
commitd894dc54489a2891e00a27d2ddf63690757d93ef (patch)
tree8aafd3b1011519e7fc6cb986105245e66c1856e2 /src
parentb088139ed09c16816155eb79560b64878ebc2ab6 (diff)
Make sure crypto is running as lots of things use it
Diffstat (limited to 'src')
-rw-r--r--src/rebar_core.erl3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl
index 61e9dee..fbc5c61 100644
--- a/src/rebar_core.erl
+++ b/src/rebar_core.erl
@@ -50,6 +50,9 @@ run(Args) ->
%% Pre-load the rebar app so that we get default configuration
ok = application:load(rebar),
+ %% Make sure crypto is running
+ crypto:start(),
+
%% Initialize logging system
rebar_log:init(),