From 930c50c95f2e03c7c0a609b755ce5d7430639112 Mon Sep 17 00:00:00 2001 From: Duane Johnson Date: Wed, 18 Jan 2023 09:30:34 -0700 Subject: [PATCH] feat(find): let fdfind use --full-path search to include directories (#161) --- plugins/src/find/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/src/find/mod.rs b/plugins/src/find/mod.rs index 85434bf..bba46c9 100644 --- a/plugins/src/find/mod.rs +++ b/plugins/src/find/mod.rs @@ -223,6 +223,7 @@ async fn query(arg: &str) -> io::Result<(Child, ChildStdout)> { let spawn = |cmd: &str| -> io::Result { Command::new(cmd) .arg("-i") + .arg("--full-path") .arg(arg) .stdin(Stdio::null()) .stdout(Stdio::piped())