summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-04-20 13:59:49 -0500
committerTristan Sloughter <t@crashfast.com>2015-04-20 14:10:04 -0500
commit9e59abacf3c9b811b11f2a2fdae26286c0bebdd6 (patch)
tree2b74eb9826bdf6eab2c74812e98aa91ae6e8435a /src
parent520855ee42c01da17a27dc721fddee0ca1e79b72 (diff)
run project wide pre-compile hooks after deps have compiled
Diffstat (limited to 'src')
-rw-r--r--src/rebar_prv_compile.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rebar_prv_compile.erl b/src/rebar_prv_compile.erl
index 15a5164..f3edebc 100644
--- a/src/rebar_prv_compile.erl
+++ b/src/rebar_prv_compile.erl
@@ -36,8 +36,6 @@ do(State) ->
Deps = rebar_state:deps_to_build(State),
Cwd = rebar_dir:get_cwd(),
- rebar_hooks:run_all_hooks(Cwd, pre, ?PROVIDER, Providers, State),
-
%% Need to allow global config vars used on deps
%% Right now no way to differeniate and just give deps a new state
EmptyState = rebar_state:new(),
@@ -45,6 +43,9 @@ do(State) ->
{ok, ProjectApps1} = rebar_digraph:compile_order(ProjectApps),
+ %% Run top level hooks *before* project apps compiled but *after* deps are
+ rebar_hooks:run_all_hooks(Cwd, pre, ?PROVIDER, Providers, State),
+
ProjectApps2 = build_apps(State, Providers, ProjectApps1),
State2 = rebar_state:project_apps(State, ProjectApps2),