Skip to content

Commit

Permalink
Remove no longer needed workaround of sorting glob sets
Browse files Browse the repository at this point in the history
Fixes #225
  • Loading branch information
marco-c committed Mar 29, 2019
1 parent 4620945 commit fb16865
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/path_rewriting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,6 @@ pub fn rewrite_paths(
) -> CovResultIter {
let mut glob_builder = GlobSetBuilder::new();

// workaround for bug: https://github.com/BurntSushi/ripgrep/issues/1079
// Some filters foo/* are ignored when not sorted
to_ignore_dirs.sort_unstable();

for to_ignore_dir in to_ignore_dirs {
glob_builder.add(Glob::new(&to_ignore_dir).unwrap());
}
Expand Down

0 comments on commit fb16865

Please sign in to comment.