We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7327d9d + b204b49 commit b7da1aaCopy full SHA for b7da1aa
src/bootstrap/flags.rs
@@ -357,15 +357,9 @@ Arguments:
357
};
358
359
360
- let mut stage = matches.opt_str("stage").map(|j| j.parse().unwrap());
361
-
362
- if matches.opt_present("incremental") && stage.is_none() {
363
- stage = Some(1);
364
- }
365
366
Flags {
367
verbose: matches.opt_count("verbose"),
368
- stage,
+ stage: matches.opt_str("stage").map(|j| j.parse().unwrap()),
369
dry_run: matches.opt_present("dry-run"),
370
on_fail: matches.opt_str("on-fail"),
371
rustc_error_format: matches.opt_str("error-format"),
0 commit comments