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.
2 parents 4831523 + be37265 commit 404cce0Copy full SHA for 404cce0
src/bootstrap/config.rs
@@ -617,7 +617,13 @@ impl Config {
617
| Subcommand::Build { .. }
618
| Subcommand::Bench { .. }
619
| Subcommand::Dist { .. }
620
- | Subcommand::Install { .. } => assert_eq!(config.stage, 2),
+ | Subcommand::Install { .. } => {
621
+ assert_eq!(
622
+ config.stage, 2,
623
+ "x.py should be run with `--stage 2` on CI, but was run with `--stage {}`",
624
+ config.stage,
625
+ );
626
+ }
627
Subcommand::Clean { .. }
628
| Subcommand::Check { .. }
629
| Subcommand::Clippy { .. }
0 commit comments