From 476a1cc244717cf0599d5988d12bc94d4264cf8e Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 25 Feb 2017 20:16:22 -0800 Subject: [PATCH] build-manifest: Fix typos with rust-analysis The name of the package is 'rust-analysis', not 'analysis', and then name of the channel is 'nightly', not 'rust-nightly' --- src/tools/build-manifest/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs index 6d40dcacdba4..18c7932a2c03 100644 --- a/src/tools/build-manifest/src/main.rs +++ b/src/tools/build-manifest/src/main.rs @@ -215,8 +215,8 @@ impl Builder { self.package("rust-docs", &mut manifest.pkg, TARGETS); self.package("rust-src", &mut manifest.pkg, &["*"]); - if self.channel == "rust-nightly" { - self.package("analysis", &mut manifest.pkg, TARGETS); + if self.channel == "nightly" { + self.package("rust-analysis", &mut manifest.pkg, TARGETS); } let mut pkg = Package {