Skip to content

Commit

Permalink
Fix botched member variable rename
Browse files Browse the repository at this point in the history
  • Loading branch information
shepmaster committed Mar 9, 2017
1 parent 3087a1f commit 57c989c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/build-manifest/src/main.rs
Expand Up @@ -218,7 +218,7 @@ impl Builder {
self.package("rust-docs", &mut manifest.pkg, TARGETS);
self.package("rust-src", &mut manifest.pkg, &["*"]);

if self.channel == "nightly" {
if self.rust_release == "nightly" {
self.package("rust-analysis", &mut manifest.pkg, TARGETS);
}

Expand Down Expand Up @@ -271,7 +271,7 @@ impl Builder {
target: target.to_string(),
});
}
if self.channel == "nightly" {
if self.rust_release == "nightly" {
extensions.push(Component {
pkg: "rust-analysis".to_string(),
target: target.to_string(),
Expand Down

0 comments on commit 57c989c

Please sign in to comment.