mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Restore missing fifo check (#16931)
Fixes a merge conflict between #16915 and #16039 Release Notes: - N/A
This commit is contained in:
parent
9662829810
commit
88d36d8b9f
@ -413,6 +413,9 @@ impl WorktreeStore {
|
||||
if skip_entries.contains(&entry.id) {
|
||||
continue;
|
||||
}
|
||||
if entry.is_fifo {
|
||||
continue;
|
||||
}
|
||||
|
||||
let matched_path = if include_root {
|
||||
let mut full_path = PathBuf::from(snapshot.root_name());
|
||||
|
Loading…
Reference in New Issue
Block a user