summaryrefslogtreecommitdiff
path: root/src/rebar.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar.erl')
-rw-r--r--src/rebar.erl3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rebar.erl b/src/rebar.erl
index 7ce409c..b7d977f 100644
--- a/src/rebar.erl
+++ b/src/rebar.erl
@@ -96,6 +96,9 @@ run_aux(Commands) ->
%% Initialize logging system
rebar_log:init(),
+ %% Initialize vsn cache
+ _VsnCacheTab = ets:new(rebar_vsn_cache,[named_table, public]),
+
%% Convert command strings to atoms
CommandAtoms = [list_to_atom(C) || C <- Commands],