Skip to content

Commit

Permalink
Rollup merge of rust-lang#53753 - RalfJung:keep-stage, r=nikomatsakis
Browse files Browse the repository at this point in the history
expand keep-stage --help text
  • Loading branch information
Mark-Simulacrum committed Aug 28, 2018
2 parents 3969ad2 + e6dcdee commit 2f2a4a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bootstrap/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ To learn more about a subcommand, run `./x.py <subcommand> -h`"
"stage to build (indicates compiler to use/test, e.g. stage 0 uses the \
bootstrap compiler, stage 1 the stage 0 rustc artifacts, etc.)",
"N");
opts.optmulti("", "keep-stage", "stage(s) to keep without recompiling", "N");
opts.optmulti("", "keep-stage", "stage(s) to keep without recompiling \
(pass multiple times to keep e.g. both stages 0 and 1)", "N");
opts.optopt("", "src", "path to the root of the rust checkout", "DIR");
opts.optopt("j", "jobs", "number of jobs to run in parallel", "JOBS");
opts.optflag("h", "help", "print this help message");
Expand Down

0 comments on commit 2f2a4a1

Please sign in to comment.