Fix search with hidden root path

This commit is contained in:
sharkdp
2017-05-14 22:32:50 +02:00
parent 9bf008b319
commit bb63a4c6d7
+3 -1
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);