File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ pub use crate::Compiler;
28
28
// - use std::lazy for `Lazy`
29
29
// - use std::cell for `OnceCell`
30
30
// Once they get stabilized and reach beta.
31
- use build_helper:: ci:: CiEnv ;
32
31
use clap:: ValueEnum ;
33
32
use once_cell:: sync:: { Lazy , OnceCell } ;
34
33
@@ -1275,12 +1274,7 @@ impl<'a> Builder<'a> {
1275
1274
self . clear_if_dirty ( & out_dir, & backend) ;
1276
1275
}
1277
1276
1278
- if cmd == "doc"
1279
- || cmd == "rustdoc"
1280
- // FIXME: We shouldn't need to check this.
1281
- // ref https://github.com/rust-lang/rust/issues/117430#issuecomment-1788160523
1282
- && !CiEnv :: is_ci ( )
1283
- {
1277
+ if cmd == "doc" || cmd == "rustdoc" {
1284
1278
let my_out = match mode {
1285
1279
// This is the intended out directory for compiler documentation.
1286
1280
Mode :: Rustc | Mode :: ToolRustc => self . compiler_doc_out ( target) ,
You can’t perform that action at this time.
0 commit comments