diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-08-28 21:19:04 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-08-28 21:19:04 -0500 |
commit | 901cea4671864cebc6d7da40e14a004ad2ad8687 (patch) | |
tree | 3f6b0fcdbc264e97947252f3cc11a7dc7bb5a489 /src/rebar_prv_app_builder.erl | |
parent | e940d6583ab17f1467c4740c9cc206f72b6cc7ce (diff) |
quick and dirty fix for proper dep compilatoin order
Diffstat (limited to 'src/rebar_prv_app_builder.erl')
-rw-r--r-- | src/rebar_prv_app_builder.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_prv_app_builder.erl b/src/rebar_prv_app_builder.erl index c4502e4..52a6b68 100644 --- a/src/rebar_prv_app_builder.erl +++ b/src/rebar_prv_app_builder.erl @@ -32,8 +32,6 @@ do(State) -> Apps = rebar_state:apps_to_build(State), lists:foreach(fun(AppInfo) -> - ?INFO("Compiling ~s ~s~n", [rebar_app_info:name(AppInfo) - ,rebar_app_info:original_vsn(AppInfo)]), _AppInfo1 = build(State, AppInfo) end, Apps), @@ -41,6 +39,8 @@ do(State) -> {ok, State}. build(State, AppInfo) -> + ?INFO("Compiling ~s ~s~n", [rebar_app_info:name(AppInfo) + ,rebar_app_info:original_vsn(AppInfo)]), rebar_erlc_compiler:compile(State, rebar_app_info:dir(AppInfo)), {ok, AppInfo1} = rebar_otp_app:compile(State, AppInfo), AppInfo1. |