Skip to content

Commit

Permalink
Fix warning caused by needless borrow
Browse files Browse the repository at this point in the history
  • Loading branch information
jdno committed Oct 1, 2024
1 parent aee55d2 commit 6065fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ impl Context {
.arg("cp")
.arg("--recursive")
.arg("--only-show-errors")
.arg(&self.s3_artifacts_url(&format!("{}/", rev)))
.arg(self.s3_artifacts_url(&format!("{}/", rev)))
.arg(format!("{}/", dl.display())))?;

let mut files = dl.read_dir()?;
Expand Down

0 comments on commit 6065fe8

Please sign in to comment.