Skip to content

Commit

Permalink
Rollup merge of rust-lang#52280 - japaric:llvm-tools-preview, r=kennytm
Browse files Browse the repository at this point in the history
llvm-tools-preview: fix build-manifest

r? @alexcrichton
  • Loading branch information
kennytm committed Jul 12, 2018
2 parents efad6f1 + f45d5eb commit 360412e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/build-manifest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ impl Builder {
format!("clippy-{}-{}.tar.gz", self.clippy_release, target)
} else if component == "rustfmt" || component == "rustfmt-preview" {
format!("rustfmt-{}-{}.tar.gz", self.rustfmt_release, target)
} else if component == "llvm_tools" {
} else if component == "llvm-tools" || component == "llvm-tools-preview" {
format!("llvm-tools-{}-{}.tar.gz", self.llvm_tools_release, target)
} else {
format!("{}-{}-{}.tar.gz", component, self.rust_release, target)
Expand Down

0 comments on commit 360412e

Please sign in to comment.