diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-07-02 19:20:45 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-07-02 19:23:25 +0200 |
commit | f5af9d6c215c3582e5b5d15d3fd61b1ebc7f192c (patch) | |
tree | 34fd7d0d9e5cb5bea2e8e3cfc1b5d6a013bcc56d /src | |
parent | 9521d3fd861923957dd30f3b0bc8734a6d5ba9ca (diff) |
Fix rebar_eunit whitespace issues
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_eunit.erl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 42c6fdd..b966985 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -87,13 +87,12 @@ eunit(Config, _AppFile) -> %% for source files. Also copy files from src_dirs. ErlOpts = rebar_utils:erl_opts(Config), + SrcDirs = rebar_utils:src_dirs(proplists:append_values(src_dirs, ErlOpts)), SrcErls = lists:foldl( - fun(Dir, Acc) -> - lists:append(Acc, rebar_utils:find_files(Dir, ".*\\.erl\$")) - end, - [], - rebar_utils:src_dirs(proplists:append_values(src_dirs, ErlOpts)) - ), + fun(Dir, Acc) -> + Files = rebar_utils:find_files(Dir, ".*\\.erl\$"), + lists:append(Acc, Files) + end, [], SrcDirs), ?DEBUG("SrcErls: ~s\n", [SrcErls]), %% If it is not the first time rebar eunit is executed, there will be source |