Skip to content

Commit 476a1cc

Browse files
committed
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'
1 parent 1572bf1 commit 476a1cc

File tree

1 file changed

+2
-2
lines changed
  • src/tools/build-manifest/src

1 file changed

+2
-2
lines changed

src/tools/build-manifest/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ impl Builder {
215215
self.package("rust-docs", &mut manifest.pkg, TARGETS);
216216
self.package("rust-src", &mut manifest.pkg, &["*"]);
217217

218-
if self.channel == "rust-nightly" {
219-
self.package("analysis", &mut manifest.pkg, TARGETS);
218+
if self.channel == "nightly" {
219+
self.package("rust-analysis", &mut manifest.pkg, TARGETS);
220220
}
221221

222222
let mut pkg = Package {

0 commit comments

Comments
 (0)