Rollup merge of #52280 - japaric:llvm-tools-preview, r=kennytm

llvm-tools-preview: fix build-manifest

r? @alexcrichton
This commit is contained in:
kennytm
2018-07-14 02:56:42 +08:00
committed by GitHub
+1 -1
View File
@@ -492,7 +492,7 @@ fn filename(&self, component: &str, target: &str) -> String {
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)