Rollup merge of #33560 - eddyb:symtidy, r=alexcrichton
Use symlink_metadata in tidy to avoid panicking on broken symlinks. r? @alexcrichton
This commit is contained in:
commit
f5462013ee
@ -35,7 +35,7 @@ pub fn check(path: &Path, bad: &mut bool) {
|
||||
return
|
||||
}
|
||||
|
||||
let metadata = t!(fs::metadata(&file), &file);
|
||||
let metadata = t!(fs::symlink_metadata(&file), &file);
|
||||
if metadata.mode() & 0o111 != 0 {
|
||||
println!("binary checked into source: {}", file.display());
|
||||
*bad = true;
|
||||
|
Loading…
Reference in New Issue
Block a user