diff options
Diffstat (limited to 'src/rebar_otp_app.erl')
-rw-r--r-- | src/rebar_otp_app.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_otp_app.erl b/src/rebar_otp_app.erl index 2b5f682..a93defc 100644 --- a/src/rebar_otp_app.erl +++ b/src/rebar_otp_app.erl @@ -159,7 +159,7 @@ validate_name(AppName, File) -> ebin_modules(App, Dir) -> Beams = lists:sort(rebar_utils:beams(filename:join(Dir, "ebin"))), - F = fun(Beam) -> not lists:prefix(filename:join([rebar_app_info:dir(App), "test"]), + F = fun(Beam) -> not lists:prefix(filename:join([rebar_app_info:out_dir(App), "test"]), beam_src(Beam)) end, Filtered = lists:filter(F, Beams), |