Skip to content

Commit af6e2d7

Browse files
committed
temp
1 parent 7c2ab8d commit af6e2d7

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/bootstrap/doc.rs

+9-8
Original file line numberDiff line numberDiff line change
@@ -310,14 +310,15 @@ impl Step for TheBook {
310310
});
311311

312312
// build the redirect pages
313-
builder.info(&format!("Documenting book redirect pages ({})", target));
314-
for file in t!(fs::read_dir(builder.src.join("src/doc/book/redirects"))) {
315-
let file = t!(file);
316-
let path = file.path();
317-
let path = path.to_str().unwrap();
318-
319-
invoke_rustdoc(builder, compiler, target, path);
320-
}
313+
// builder.info(&format!("Documenting book redirect pages ({})", target));
314+
// for file in t!(fs::read_dir(builder.src.join("src/doc/book/redirects"))) {
315+
// let file = t!(file);
316+
// let path = file.path();
317+
// let path = path.to_str().unwrap();
318+
319+
// invoke_rustdoc(builder, compiler, target, path);
320+
// }
321+
let _ = invoke_rustdoc;
321322
}
322323
}
323324

0 commit comments

Comments
 (0)