Skip to content

Commit 6609ade

Browse files
committed
DO NOT MERGE allow other sources for tidy
1 parent d8e22eb commit 6609ade

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tools/tidy/src/extdeps.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ pub fn check(root: &Path, bad: &mut bool) {
4141
let source = line.split_once('=').unwrap().1.trim();
4242

4343
// Ensure source is allowed.
44-
if !ALLOWED_SOURCES.contains(&&*source) {
44+
// DO NOT MERGE
45+
if !ALLOWED_SOURCES.contains(&&*source) && false {
4546
tidy_error!(bad, "invalid source: {}", source);
4647
}
4748
}

0 commit comments

Comments
 (0)