Restore missing fifo check (#16931)
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run

Fixes a merge conflict between #16915 and #16039

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin 2024-08-26 21:17:44 -06:00 committed by GitHub
parent 9662829810
commit 88d36d8b9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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());