From: Jorge Aparicio Date: Thu, 12 Jul 2018 01:03:34 +0000 (-0500) Subject: llvm-tools-preview: fix build-manifest X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=f45d5eb4f00424344682d745c8f30ccacf213209;p=rust.git llvm-tools-preview: fix build-manifest --- diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs index c2f0687a5a9..bb20678d4a1 100644 --- a/src/tools/build-manifest/src/main.rs +++ b/src/tools/build-manifest/src/main.rs @@ -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)