Skip to content

Commit d63f119

Browse files
committed
chore: fix clippy warning
1 parent 7ef35ad commit d63f119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ pub fn closure_paths(store_path: &str, with_outputs: bool) -> Result<Vec<String>
120120
/// Get all paths in an installable's closure
121121
#[instrument(skip(installable))]
122122
fn installable_closure_paths(installable: &str) -> Result<Vec<String>> {
123-
let store_path = drv_path(&installable)?;
123+
let store_path = drv_path(installable)?;
124124
let paths = closure_paths(&store_path, true)?;
125125
let out_paths = strip_drvs(paths);
126126

0 commit comments

Comments
 (0)