diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-08-27 18:56:39 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-08-27 18:56:39 -0500 |
commit | f34509892cd3e68e4210969aa068fee5bc1bd36d (patch) | |
tree | 8b1d7ef440753ffa12e84a4b8783eccdf67c14fe /src | |
parent | 2523b93ebc5795a2c0363e3d92e78437ec7a77ef (diff) |
build app file after modules
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_prv_app_builder.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_app_builder.erl b/src/rebar_prv_app_builder.erl index 688345a..b29a6f9 100644 --- a/src/rebar_prv_app_builder.erl +++ b/src/rebar_prv_app_builder.erl @@ -46,8 +46,8 @@ do(State) -> {ok, State}. build(State, AppInfo) -> + rebar_erlc_compiler:compile(State, rebar_app_info:dir(AppInfo)), {ok, AppInfo1} = rebar_otp_app:compile(State, AppInfo), - rebar_erlc_compiler:compile(State, rebar_app_info:dir(AppInfo1)), AppInfo1. %% =================================================================== |