From c828f590568e09ee258f8906781c5594b6bc36f4 Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Sun, 29 Nov 2009 16:53:53 -0700 Subject: Fix some minor typos; create simple install/bootstrapping script --- src/rebar_app_installer.erl | 10 +++++----- src/rebar_core.erl | 4 +++- 2 files changed, 8 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/rebar_app_installer.erl b/src/rebar_app_installer.erl index ae723c5..0d1e986 100644 --- a/src/rebar_app_installer.erl +++ b/src/rebar_app_installer.erl @@ -49,20 +49,20 @@ install(Config, File) -> %% continue if it's set case rebar_config:get_global(force, "0") of "0" -> - ?ERROR("~s already exists. Installation failed."), + ?ERROR("~s already exists. Installation failed.", []), ?FAIL; "1" -> - ?WARN("~s already exists, but forcibly overwriting."), + ?WARN("~s already exists, but forcibly overwriting.", []) end; false -> ok - end, + end. %% Wipe out any previous versions - ok = rebar_file_utils:rm_rf(Appdir), +% ok = rebar_file_utils:rm_rf(Appdir), %% Re-create target - ok = rebar_file_utils:mkdir_p(AppDir), +% ok = rebar_file_utils:mkdir_p(AppDir). %% By default we copy the ebin, include, src and priv directories 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). %% =================================================================== -- cgit v1.1