diff options
| author | kennytm <kennytm@gmail.com> | 2018-07-14 02:56:42 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-14 02:56:42 +0800 |
| commit | 9f79e915ff91c974dc47bfc8bb8be34efb7ce30e (patch) | |
| tree | 2b68bf61b227afc99706dbc96b5104a6efb3886f /src/tools | |
| parent | dad4efb961fd156541ac939c0d809544427345ff (diff) | |
| parent | f45d5eb4f00424344682d745c8f30ccacf213209 (diff) | |
| download | rust-9f79e915ff91c974dc47bfc8bb8be34efb7ce30e.tar.gz rust-9f79e915ff91c974dc47bfc8bb8be34efb7ce30e.zip | |
Rollup merge of #52280 - japaric:llvm-tools-preview, r=kennytm
llvm-tools-preview: fix build-manifest r? @alexcrichton
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/build-manifest/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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) |
