We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 088216f commit fcefe36Copy full SHA for fcefe36
src/bootstrap/dist.rs
@@ -1164,7 +1164,10 @@ impl Step for Extended {
1164
// the std files during uninstall. To do this ensure that rustc comes
1165
// before rust-std in the list below.
1166
let mut tarballs = vec![rustc_installer, cargo_installer, rls_installer,
1167
- analysis_installer, docs_installer, std_installer];
+ analysis_installer, std_installer];
1168
+ if build.config.docs {
1169
+ tarballs.push(docs_installer);
1170
+ }
1171
if target.contains("pc-windows-gnu") {
1172
tarballs.push(mingw_installer.unwrap());
1173
}
0 commit comments