Skip to content

Commit f600154

Browse files
authoredOct 6, 2020
Rollup merge of #77624 - akoptelov:c-all-targets-fix, r=jyn514
Add c as a shorthand check alternative for new options #77603 There is a missing "c" that is a shorthand for "check" in newly added match arm for handling check-specific options.
2 parents 1b05615 + db46f43 commit f600154

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/bootstrap/flags.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ To learn more about a subcommand, run `./x.py <subcommand> -h`",
254254
`/<build_base>/rustfix_missing_coverage.txt`",
255255
);
256256
}
257-
"check" => {
257+
"check" | "c" => {
258258
opts.optflag("", "all-targets", "Check all targets");
259259
}
260260
"bench" => {

0 commit comments

Comments
 (0)
Please sign in to comment.