Skip to content

Commit

Permalink
Fix the x.py clippy command
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed May 8, 2022
1 parent e612ce9 commit c64cf27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ impl<'a> Builder<'a> {
native::Lld,
native::CrtBeginEnd
),
Kind::Check => describe!(
Kind::Check | Kind::Clippy | Kind::Fix => describe!(
check::Std,
check::Rustc,
check::Rustdoc,
Expand Down Expand Up @@ -664,7 +664,7 @@ impl<'a> Builder<'a> {
),
Kind::Run => describe!(run::ExpandYamlAnchors, run::BuildManifest, run::BumpStage0),
// These commands either don't use paths, or they're special-cased in Build::build()
Kind::Clean | Kind::Clippy | Kind::Fix | Kind::Format | Kind::Setup => vec![],
Kind::Clean | Kind::Format | Kind::Setup => vec![],
}
}

Expand Down

0 comments on commit c64cf27

Please sign in to comment.