summaryrefslogtreecommitdiff
path: root/src/rebar_core.erl
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2009-11-29 16:53:53 -0700
committerDave Smith <dizzyd@dizzyd.com>2009-11-29 16:53:53 -0700
commitc828f590568e09ee258f8906781c5594b6bc36f4 (patch)
tree09584f7759589c4d8a57cbf3cd63c2aebac89500 /src/rebar_core.erl
parentf4729544ddc664975ea448dd25f0df83b40a74ee (diff)
Fix some minor typos; create simple install/bootstrapping script
Diffstat (limited to 'src/rebar_core.erl')
-rw-r--r--src/rebar_core.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl
index a18370e..926303d 100644
--- a/src/rebar_core.erl
+++ b/src/rebar_core.erl
@@ -26,6 +26,8 @@
-export([run/1]).
+-include("rebar.hrl").
+
%% ===================================================================
%% Public API
%% ===================================================================
@@ -57,7 +59,7 @@ run(Args) ->
update_code_path(Targets),
%% Finally, apply the specified command to each target
- apply_commands(Targets, Commands)
+ apply_commands(Targets, Commands).
%% ===================================================================