We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8e22eb commit 6609adeCopy full SHA for 6609ade
src/tools/tidy/src/extdeps.rs
@@ -41,7 +41,8 @@ pub fn check(root: &Path, bad: &mut bool) {
41
let source = line.split_once('=').unwrap().1.trim();
42
43
// Ensure source is allowed.
44
- if !ALLOWED_SOURCES.contains(&&*source) {
+ // DO NOT MERGE
45
+ if !ALLOWED_SOURCES.contains(&&*source) && false {
46
tidy_error!(bad, "invalid source: {}", source);
47
}
48
0 commit comments