diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2019-06-07 13:41:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-07 13:41:15 -0400 |
commit | dec3aeb6c548452ff559b1c41717831f59e84201 (patch) | |
tree | ce3b7cea1720865c0ddc4c61f9ac0579d1a95efb /src/rebar_prv_compile.erl | |
parent | 22b221d073402d11bf39332499c599a21f0fdd2a (diff) | |
parent | 5c89f25d1083aebd366c3dd9841e9e0616c4b617 (diff) |
Merge pull request #2100 from ferd/lint-on-compile
Only lint app files when compiling
Diffstat (limited to 'src/rebar_prv_compile.erl')
-rw-r--r-- | src/rebar_prv_compile.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rebar_prv_compile.erl b/src/rebar_prv_compile.erl index cf2bcf2..2919c40 100644 --- a/src/rebar_prv_compile.erl +++ b/src/rebar_prv_compile.erl @@ -247,6 +247,7 @@ has_all_artifacts(AppInfo1) -> {false, File} -> throw(?PRV_ERROR({missing_artifact, File})); true -> + rebar_app_utils:lint_app_info(AppInfo1), true end. |