summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-08-16 08:49:41 -0500
committerTristan Sloughter <t@crashfast.com>2014-08-16 08:49:41 -0500
commita602cfc5934d0f9b6668105ee2721f846fc46aac (patch)
tree81c7e2bc0813318ede007ed17e2940c5fbf66935 /bootstrap
parenteb8fa02df7d71435a879de987b3139bb5bffb963 (diff)
replace logging with ec_cmd_log from erlware_commons
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/bootstrap6
1 files changed, 4 insertions, 2 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index 18a243f..1a1afcd 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -79,8 +79,10 @@ main(Args) ->
%% Run rebar compile to do proper .app validation etc.
%% and rebar escriptize to create the rebar script
- RebarArgs = Args -- ["debug"], %% Avoid trying to run 'debug' command
- rebar:main(["compile", "escriptize"] ++ RebarArgs),
+ %RebarArgs = Args -- ["debug"], %% Avoid trying to run 'debug' command
+ %rebar:main(["compile", "escriptize"] ++ RebarArgs),
+
+ os:cmd("./bootstrap/rebar compile escriptize"),
%% Finally, update executable perms for our script on *nix,
%% or write out script files on win32.