File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -1041,11 +1041,11 @@ impl Config {
1041
1041
eprintln ! ( "ERROR: cannot run clippy on stage 0. Use at least stage 1." ) ;
1042
1042
exit ! ( 1 ) ;
1043
1043
}
1044
- ( 0 , Subcommand :: Dist { .. } ) => {
1044
+ ( 0 , Subcommand :: Dist ) => {
1045
1045
eprintln ! ( "ERROR: cannot dist anything on stage 0. Use at least stage 1." ) ;
1046
1046
exit ! ( 1 ) ;
1047
1047
}
1048
- ( 0 , Subcommand :: Install { .. } ) => {
1048
+ ( 0 , Subcommand :: Install ) => {
1049
1049
eprintln ! ( "ERROR: cannot install anything on stage 0. Use at least stage 1." ) ;
1050
1050
exit ! ( 1 ) ;
1051
1051
}
Original file line number Diff line number Diff line change @@ -516,4 +516,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
516
516
severity : ChangeSeverity :: Info ,
517
517
summary : "Build/check now supports forwarding `--timings` flag to cargo." ,
518
518
} ,
519
+ ChangeInfo {
520
+ change_id : 145472 ,
521
+ severity : ChangeSeverity :: Warning ,
522
+ summary : "It is no longer possible to `x dist` or `x install` with stage 0. All dist and install commands have to be on stage 1+." ,
523
+ } ,
519
524
] ;
You can’t perform that action at this time.
0 commit comments