Browse Source

fetch eunit_formatters config not from the command args but from the config

pull/949/head
Tristan Sloughter 9 years ago
parent
commit
4935b8dc99
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_prv_eunit.erl

+ 1
- 1
src/rebar_prv_eunit.erl View File

@ -346,7 +346,7 @@ resolve_eunit_opts(State) ->
true -> set_verbose(EUnitOpts); true -> set_verbose(EUnitOpts);
false -> EUnitOpts false -> EUnitOpts
end, end,
case proplists:get_value(eunit_formatters, Opts, true) of
case proplists:get_value(eunit_formatters, EUnitOpts1, true) of
true -> custom_eunit_formatters(EUnitOpts1); true -> custom_eunit_formatters(EUnitOpts1);
false -> EUnitOpts1 false -> EUnitOpts1
end. end.

Loading…
Cancel
Save