diff options
author | OJ Reeves <oj@buffered.io> | 2010-01-09 22:19:55 +1000 |
---|---|---|
committer | OJ Reeves <oj@buffered.io> | 2010-01-09 22:19:55 +1000 |
commit | 49aef70f9b5a778d9430c4167ea469b1ebb8f71d (patch) | |
tree | d17695b9c97859bb95096f0d2e7b75b43adce2bd | |
parent | ec4e8058989e1e57ce8d547de8c687567c323755 (diff) |
[mq]: eunit-fix
-rw-r--r-- | src/rebar_eunit.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 1a3a45f..6ef7a25 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -63,7 +63,7 @@ eunit(Config, _File) -> %% %% TODO: Not currently compatible with package modules Modules = [list_to_atom(filename:basename(N, ".beam")) || - N <- filelib:wildcard("*.beam", "ebin")], + N <- filelib:wildcard("*.beam", ?EUNIT_DIR)], %% TODO: If there are other wildcards specified in eunit_sources, compile them |