diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-02-25 20:16:22 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-02-25 20:20:04 -0800 |
| commit | 476a1cc244717cf0599d5988d12bc94d4264cf8e (patch) | |
| tree | 0f104332ae23bc403052fd10f837c2c6b51f401e /src | |
| parent | 1572bf104dbf65d58bd6b889fa46229c9b92d6f9 (diff) | |
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'
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/build-manifest/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs index 6d40dcacdba..18c7932a2c0 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 { |
