Fix search with hidden root path

This commit is contained in:
sharkdp 2017-05-14 22:32:50 +02:00
parent 9bf008b319
commit bb63a4c6d7
1 changed files with 3 additions and 1 deletions

View File

@ -106,7 +106,9 @@ fn scan(root: &Path, pattern: &Regex, config: &FdOptions) {
.follow_links(config.follow_links)
.max_depth(config.max_depth)
.into_iter()
.filter_entry(|e| config.search_hidden || !is_hidden(e))
.filter_entry(|e| config.search_hidden
|| !is_hidden(e)
|| e.path() == root)
.filter_map(|e| e.ok())
.filter(|e| e.path() != root);