about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <jakub.beranek@vsb.cz>2024-07-07 13:42:33 +0200
committerJakub Beránek <berykubik@gmail.com>2024-07-12 20:15:19 +0200
commitebb30890388d3a569de823d1278a0aa467847d32 (patch)
treefdfd8848a3ee8d567fafb96123fd5a0f22a2c7db
parent8ee18d600f962df67e831da4d07cc556cff39526 (diff)
downloadrust-ebb30890388d3a569de823d1278a0aa467847d32.tar.gz
rust-ebb30890388d3a569de823d1278a0aa467847d32.zip
Remove unused rustdoc command
-rw-r--r--src/bootstrap/src/core/build_steps/doc.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bootstrap/src/core/build_steps/doc.rs b/src/bootstrap/src/core/build_steps/doc.rs
index d1080775efe..dc46af6cf48 100644
--- a/src/bootstrap/src/core/build_steps/doc.rs
+++ b/src/bootstrap/src/core/build_steps/doc.rs
@@ -258,10 +258,6 @@ impl Step for TheBook {
         // build the version info page and CSS
         let shared_assets = builder.ensure(SharedAssets { target });
 
-        // build the command first so we don't nest GHA groups
-        // FIXME: this doesn't do anything!
-        builder.rustdoc_cmd(compiler);
-
         // build the redirect pages
         let _guard = builder.msg_doc(compiler, "book redirect pages", target);
         for file in t!(fs::read_dir(redirect_path)) {