Skip to content

Commit c64cf27

Browse files
committedMay 8, 2022
Fix the x.py clippy command
1 parent e612ce9 commit c64cf27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/bootstrap/builder.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ impl<'a> Builder<'a> {
534534
native::Lld,
535535
native::CrtBeginEnd
536536
),
537-
Kind::Check => describe!(
537+
Kind::Check | Kind::Clippy | Kind::Fix => describe!(
538538
check::Std,
539539
check::Rustc,
540540
check::Rustdoc,
@@ -664,7 +664,7 @@ impl<'a> Builder<'a> {
664664
),
665665
Kind::Run => describe!(run::ExpandYamlAnchors, run::BuildManifest, run::BumpStage0),
666666
// These commands either don't use paths, or they're special-cased in Build::build()
667-
Kind::Clean | Kind::Clippy | Kind::Fix | Kind::Format | Kind::Setup => vec![],
667+
Kind::Clean | Kind::Format | Kind::Setup => vec![],
668668
}
669669
}
670670

0 commit comments

Comments
 (0)
Please sign in to comment.