about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJake Goulding <jake.goulding@gmail.com>2017-03-04 10:07:55 -0500
committerJake Goulding <jake.goulding@gmail.com>2017-03-09 08:52:11 -0500
commit57c989caa1db0b000ff5e9fd2ebb0e6557a3cf30 (patch)
tree7fea82aa05962e29df60eee5b7bf2d3ff3970c37
parent3087a1f39eaeac9d76c8b159dcc64de515bb2b83 (diff)
downloadrust-57c989caa1db0b000ff5e9fd2ebb0e6557a3cf30.tar.gz
rust-57c989caa1db0b000ff5e9fd2ebb0e6557a3cf30.zip
Fix botched member variable rename
-rw-r--r--src/tools/build-manifest/src/main.rs4
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 ceefcc9e0ec..cbafa9e0bd2 100644
--- a/src/tools/build-manifest/src/main.rs
+++ b/src/tools/build-manifest/src/main.rs
@@ -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);
         }
 
@@ -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(),