diff options
Diffstat (limited to 'src/rebar_prv_compile.erl')
-rw-r--r-- | src/rebar_prv_compile.erl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/rebar_prv_compile.erl b/src/rebar_prv_compile.erl index a440927..94a1e0b 100644 --- a/src/rebar_prv_compile.erl +++ b/src/rebar_prv_compile.erl @@ -46,11 +46,14 @@ do(State) -> %% Use the project State for building project apps %% Set hooks to empty so top-level hooks aren't run for each project app State2 = rebar_state:set(rebar_state:set(State, post_hooks, []), pre_hooks, []), - ProjectApps1 = build_apps(State2, Providers, ProjectApps), + {ok, ProjectApps1} = rebar_digraph:compile_order(ProjectApps), - rebar_hooks:run_all_hooks(Cwd, post, ?PROVIDER, Providers, State), + ProjectApps2 = build_apps(State2, Providers, ProjectApps1), + State3 = rebar_state:project_apps(State2, ProjectApps2), - {ok, rebar_state:project_apps(State, ProjectApps1)}. + rebar_hooks:run_all_hooks(Cwd, post, ?PROVIDER, Providers, State3), + + {ok, State3}. -spec format_error(any()) -> iolist(). format_error(Reason) -> |