From d63f119bbdafbe332088d714ef35350ed0853388 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 13 Mar 2025 20:36:57 -0400 Subject: chore: fix clippy warning --- src/nix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix.rs b/src/nix.rs index 7132e8d..59032da 100644 --- a/src/nix.rs +++ b/src/nix.rs @@ -120,7 +120,7 @@ pub fn closure_paths(store_path: &str, with_outputs: bool) -> Result /// Get all paths in an installable's closure #[instrument(skip(installable))] fn installable_closure_paths(installable: &str) -> Result> { - let store_path = drv_path(&installable)?; + let store_path = drv_path(installable)?; let paths = closure_paths(&store_path, true)?; let out_paths = strip_drvs(paths); -- cgit v1.2.3