fix(bootstrap/dist)!: change dist path for rustc-docs to avoid clashing

This commit is contained in:
rami3l 2025-12-22 21:23:20 +01:00
parent 04813e4de8
commit a182874cc1
No known key found for this signature in database
GPG key ID: 39A0730456190C3A

View file

@ -181,7 +181,7 @@ impl Step for RustcDocs {
let mut tarball = Tarball::new(builder, "rustc-docs", &target.triple);
tarball.set_product_name("Rustc Documentation");
tarball.add_bulk_dir(builder.compiler_doc_out(target), "share/doc/rust/html/rustc");
tarball.add_bulk_dir(builder.compiler_doc_out(target), "share/doc/rust/html/rustc-docs");
tarball.generate()
}
}