Skip to content

Commit

Permalink
Rollup merge of rust-lang#77624 - akoptelov:c-all-targets-fix, r=jyn514
Browse files Browse the repository at this point in the history
Add c as a shorthand check alternative for new options rust-lang#77603

There is a missing "c" that is a shorthand for "check" in newly added match arm for handling check-specific options.
  • Loading branch information
Dylan-DPC authored Oct 6, 2020
2 parents 1b05615 + db46f43 commit f600154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ To learn more about a subcommand, run `./x.py <subcommand> -h`",
`/<build_base>/rustfix_missing_coverage.txt`",
);
}
"check" => {
"check" | "c" => {
opts.optflag("", "all-targets", "Check all targets");
}
"bench" => {
Expand Down

0 comments on commit f600154

Please sign in to comment.