Skip to content

Commit

Permalink
Rollup merge of #64998 - spastorino:filter-rls-on-tidy, r=petrochenkov
Browse files Browse the repository at this point in the history
Filter out RLS output directories on tidy runs

Closes #64957

r? @petrochenkov
  • Loading branch information
Centril committed Oct 3, 2019
2 parents f188879 + 03455e4 commit 4ea2be7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tools/tidy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ fn filter_dirs(path: &Path) -> bool {
"src/tools/rls",
"src/tools/rust-installer",
"src/tools/rustfmt",

// Filter RLS output directories
"target/rls",
];
skip.iter().any(|p| path.ends_with(p))
}
Expand Down

0 comments on commit 4ea2be7

Please sign in to comment.