Skip to content

Commit 3a97fc9

Browse files
committed
Fix botched member variable rename
1 parent 5208090 commit 3a97fc9

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ impl Builder {
218218
self.package("rust-docs", &mut manifest.pkg, TARGETS);
219219
self.package("rust-src", &mut manifest.pkg, &["*"]);
220220

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

@@ -271,7 +271,7 @@ impl Builder {
271271
target: target.to_string(),
272272
});
273273
}
274-
if self.channel == "nightly" {
274+
if self.rust_release == "nightly" {
275275
extensions.push(Component {
276276
pkg: "rust-analysis".to_string(),
277277
target: target.to_string(),

0 commit comments

Comments
 (0)