Skip to content

Commit 6065fe8

Browse files
committed
Fix warning caused by needless borrow
1 parent aee55d2 commit 6065fe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ impl Context {
378378
.arg("cp")
379379
.arg("--recursive")
380380
.arg("--only-show-errors")
381-
.arg(&self.s3_artifacts_url(&format!("{}/", rev)))
381+
.arg(self.s3_artifacts_url(&format!("{}/", rev)))
382382
.arg(format!("{}/", dl.display())))?;
383383

384384
let mut files = dl.read_dir()?;

0 commit comments

Comments
 (0)