We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4051233 + fcefe36 commit 596e97fCopy full SHA for 596e97f
src/bootstrap/dist.rs
@@ -1173,7 +1173,10 @@ impl Step for Extended {
1173
// the std files during uninstall. To do this ensure that rustc comes
1174
// before rust-std in the list below.
1175
let mut tarballs = vec![rustc_installer, cargo_installer, rls_installer,
1176
- analysis_installer, docs_installer, std_installer];
+ analysis_installer, std_installer];
1177
+ if build.config.docs {
1178
+ tarballs.push(docs_installer);
1179
+ }
1180
if target.contains("pc-windows-gnu") {
1181
tarballs.push(mingw_installer.unwrap());
1182
}
0 commit comments