Follow symlinks when walking project trees

Fixes #3691
This commit is contained in:
Daniel Fox Franke 2020-10-15 14:22:36 -04:00
parent 84d6cdef86
commit e821aa842b

View file

@ -165,7 +165,8 @@ impl NotifyActor {
let mut res = Vec::new(); let mut res = Vec::new();
for root in dirs.include.iter() { for root in dirs.include.iter() {
let walkdir = WalkDir::new(root).into_iter().filter_entry(|entry| { let walkdir =
WalkDir::new(root).follow_links(true).into_iter().filter_entry(|entry| {
if !entry.file_type().is_dir() { if !entry.file_type().is_dir() {
return true; return true;
} }