summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-13 20:36:57 -0400
committerSeth Flynn <[email protected]>2025-03-13 20:37:07 -0400
commitd63f119bbdafbe332088d714ef35350ed0853388 (patch)
tree70d9b1ac686c3986440823a71c190c428d283496
parent7ef35ad907f01f7469173f81e3e34a0a0e773731 (diff)
chore: fix clippy warning
-rw-r--r--src/nix.rs2
1 files changed, 1 insertions, 1 deletions
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<Vec<String>
/// Get all paths in an installable's closure
#[instrument(skip(installable))]
fn installable_closure_paths(installable: &str) -> Result<Vec<String>> {
- 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);