We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fae569 commit be37265Copy full SHA for be37265
src/bootstrap/config.rs
@@ -616,7 +616,13 @@ impl Config {
616
| Subcommand::Build { .. }
617
| Subcommand::Bench { .. }
618
| Subcommand::Dist { .. }
619
- | Subcommand::Install { .. } => assert_eq!(config.stage, 2),
+ | Subcommand::Install { .. } => {
620
+ assert_eq!(
621
+ config.stage, 2,
622
+ "x.py should be run with `--stage 2` on CI, but was run with `--stage {}`",
623
+ config.stage,
624
+ );
625
+ }
626
Subcommand::Clean { .. }
627
| Subcommand::Check { .. }
628
| Subcommand::Clippy { .. }
0 commit comments