summaryrefslogtreecommitdiff
path: root/src/rebar_otp_app.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2015-01-26 20:02:09 -0500
committerFred Hebert <mononcqc@ferd.ca>2015-01-26 20:02:09 -0500
commit395be3386b0685121b51233a4b9c0288dec329bb (patch)
tree1c3c91a6aa51908169c348b364cb4ef39a951d6a /src/rebar_otp_app.erl
parent31eb0402ec7a40287e0bbed0e53eabbe17da8f9b (diff)
parentf13804ffab4443cb8dec1239b9fbd0904bac50a9 (diff)
Merge pull request #118 from tsloughter/master
use processed app file for validation
Diffstat (limited to 'src/rebar_otp_app.erl')
-rw-r--r--src/rebar_otp_app.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_otp_app.erl b/src/rebar_otp_app.erl
index 74b2988..e5e2361 100644
--- a/src/rebar_otp_app.erl
+++ b/src/rebar_otp_app.erl
@@ -101,7 +101,7 @@ validate_app_modules(State, App, AppData) ->
AppVsn = proplists:get_value(vsn, AppData),
case rebar_state:get(State, validate_app_modules, true) of
true ->
- case rebar_app_discover:validate_application_info(App) of
+ case rebar_app_discover:validate_application_info(App, AppData) of
true ->
{ok, rebar_app_info:original_vsn(App, AppVsn)};
Error ->