Skip to content

Commit 89f7324

Browse files
committed
Fix upload destination for stable Rustup release
1 parent 8132d69 commit 89f7324

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/rustup.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,8 @@ impl Context {
167167
println!("Promoting artifacts to dist/...");
168168

169169
let release_bucket_url = format!(
170-
"s3://{}/{}/{}",
171-
self.config.upload_bucket,
172-
self.config.upload_dir,
173-
dist_dir.display(),
170+
"s3://{}/{}/dist/",
171+
self.config.upload_bucket, self.config.upload_dir,
174172
);
175173

176174
run(self

0 commit comments

Comments
 (0)