diff options
| author | Seth Flynn <[email protected]> | 2025-03-13 20:36:57 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-03-13 20:37:07 -0400 |
| commit | d63f119bbdafbe332088d714ef35350ed0853388 (patch) | |
| tree | 70d9b1ac686c3986440823a71c190c428d283496 /src/nix.rs | |
| parent | 7ef35ad907f01f7469173f81e3e34a0a0e773731 (diff) | |
chore: fix clippy warning
Diffstat (limited to 'src/nix.rs')
| -rw-r--r-- | src/nix.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
