Skip to content

Commit

Permalink
eflame-example
Browse files Browse the repository at this point in the history
  • Loading branch information
proger committed Sep 9, 2013
1 parent 003697b commit 81e7e40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{deps, [
{erlfsmon, ".*", {git, "git@github.com:proger/erlfsmon", "HEAD"}}
, {rebar, ".*", {git, "git@github.com:proger/rebar", "HEAD"}}
%, {lager, ".*", {git, "git@github.com:basho/lager", {tag, "2.0.0"}}}
, {lager, ".*", {git, "git@github.com:basho/lager", {tag, "2.0.0"}}}
, {eflame, ".*", {git, "git@github.com:proger/eflame", "HEAD"}}
]}.
3 changes: 2 additions & 1 deletion src/active.erl
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ rebar_conf(Args) -> rebar_conf(Args, rebar_default_conf()).
run_rebar(Commands, Conf) when is_list(Commands) ->
{ok, Cwd} = file:get_cwd(),
%%% XXX: rebar must not clobber the current directory in the future
try rebar_core:process_commands(Commands, Conf) of
%try rebar_core:process_commands(Commands, Conf) of
try eflame:apply(rebar_core, process_commands, [Commands, Conf]) of
R -> R
catch
Err:Reason ->
Expand Down

0 comments on commit 81e7e40

Please sign in to comment.