Fix opening docs for std crates with ./x.py doc --open library/*

The directories for core, alloc, std, proc_macro, and test crates now
correspond directly to the crate name and stripping the "lib" prefix is
no longer necessary.
This commit is contained in:
Tomasz Miąsko 2020-07-29 00:00:00 +00:00
parent 10c375700c
commit 6b4c739f92
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ impl Step for Std {
// open the corresponding rendered docs. // open the corresponding rendered docs.
for path in builder.paths.iter().map(components_simplified) { for path in builder.paths.iter().map(components_simplified) {
if path.get(0) == Some(&"library") { if path.get(0) == Some(&"library") {
let requested_crate = &path[1][3..]; let requested_crate = &path[1];
if krates.contains(&requested_crate) { if krates.contains(&requested_crate) {
let index = out.join(requested_crate).join("index.html"); let index = out.join(requested_crate).join("index.html");
open(builder, &index); open(builder, &index);