Browse Source

Merge pull request #2177 from manuel-rubio/master

get a sorted list of modules for coverage output (screen and HTML)
pull/2212/head
Fred Hebert 5 years ago
committed by GitHub
parent
commit
12e3ed6bf5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_prv_cover.erl

+ 1
- 1
src/rebar_prv_cover.erl View File

@ -164,7 +164,7 @@ analysis(State, Task) ->
end, end,
Mods), Mods),
true = rebar_utils:cleanup_code_path(OldPath), true = rebar_utils:cleanup_code_path(OldPath),
Analysis.
lists:sort(Analysis).
restore_cover_paths(State) -> restore_cover_paths(State) ->
lists:foreach(fun(App) -> lists:foreach(fun(App) ->

Loading…
Cancel
Save