Skip to content

Commit

Permalink
Disable tidy sources check
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron1011 committed Jul 4, 2021
1 parent 20656f2 commit d327744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/tidy/src/extdeps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub fn check(root: &Path, bad: &mut bool) {
let source = line.split_once('=').unwrap().1.trim();

// Ensure source is allowed.
if !ALLOWED_SOURCES.contains(&&*source) {
if !ALLOWED_SOURCES.contains(&&*source) && false {
tidy_error!(bad, "invalid source: {}", source);
}
}
Expand Down

0 comments on commit d327744

Please sign in to comment.