Skip to content

Commit f82d531

Browse files
committed
Fix upload destination for Rustup manifest
1 parent 89f7324 commit f82d531

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/rustup.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ version = '{}'
212212
.arg("cp")
213213
.arg("--only-show-errors")
214214
.arg(manifest_path)
215-
.arg(&self.s3_artifacts_url("release-stable.toml")))
215+
.arg(format!(
216+
"s3://{}/{}/release-stable.toml",
217+
self.config.upload_bucket, self.config.upload_dir
218+
)))
216219
}
217220
}

0 commit comments

Comments
 (0)