Drop rustc-docs from complete profile

This commit is contained in:
Mark Rousskov 2022-02-07 12:04:00 -05:00
parent c5e414843e
commit 8742baf156

View File

@ -386,7 +386,10 @@ impl Builder {
// for users to install the additional component manually, if needed.
if self.versions.channel() == "nightly" {
self.extend_profile("complete", &mut manifest.profiles, &["rustc-dev"]);
self.extend_profile("complete", &mut manifest.profiles, &["rustc-docs"]);
// Do not include the rustc-docs component for now, as it causes
// conflicts with the rust-docs component when installed. See
// #75833.
// self.extend_profile("complete", &mut manifest.profiles, &["rustc-docs"]);
}
}