Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/bootstrap/src/core/config/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,9 @@ impl Config {
| Subcommand::Install => {
assert_eq!(
stage, 2,
"x.py should be run with `--stage 2` on CI, but was run with `--stage {stage}`",
"\
x.py was run under CI with an implicit `--stage {stage}`. This is probably wrong and you want stage 2.
NOTE: Please add `--stage 2` to your command line, or if you're sure you want to run stage {stage} then add `--stage {stage}` explicitly"
);
}
Subcommand::Clean { .. }
Expand Down
Loading