From 88d36d8b9f8a6bfcb8f31c0bb665635405a34547 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Mon, 26 Aug 2024 21:17:44 -0600 Subject: [PATCH] Restore missing fifo check (#16931) Fixes a merge conflict between #16915 and #16039 Release Notes: - N/A --- crates/project/src/worktree_store.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/project/src/worktree_store.rs b/crates/project/src/worktree_store.rs index a966861630..e0b71a86c0 100644 --- a/crates/project/src/worktree_store.rs +++ b/crates/project/src/worktree_store.rs @@ -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());