We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
doc.rs
1 parent 50d1ee9 commit 43c16acCopy full SHA for 43c16ac
src/bootstrap/doc.rs
@@ -618,20 +618,13 @@ impl Step for Rustc {
618
}
619
} else {
620
for root_crate_path in paths {
621
- if !root_crate_path.exists() {
622
- builder.info(&format!(
623
- "\tskipping - {} (unknown compiler crate)",
624
- root_crate_path.display()
625
- ));
626
- } else {
627
- let root_crate = builder.crate_paths[root_crate_path];
628
- compiler_crates.extend(
629
- builder
630
- .in_tree_crates(&root_crate, Some(target))
631
- .into_iter()
632
- .map(|krate| krate.name),
633
- );
634
- }
+ let root_crate = builder.crate_paths[root_crate_path];
+ compiler_crates.extend(
+ builder
+ .in_tree_crates(&root_crate, Some(target))
+ .into_iter()
+ .map(|krate| krate.name),
+ );
635
636
637
0 commit comments