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 @@ -1379,11 +1379,11 @@ impl Config {
1379
1379
eprintln ! ( "ERROR: cannot run clippy on stage 0. Use at least stage 1." ) ;
1380
1380
exit ! ( 1 ) ;
1381
1381
}
1382
- ( 0 , Subcommand :: Dist { .. } ) => {
1382
+ ( 0 , Subcommand :: Dist ) => {
1383
1383
eprintln ! ( "ERROR: cannot dist anything on stage 0. Use at least stage 1." ) ;
1384
1384
exit ! ( 1 ) ;
1385
1385
}
1386
- ( 0 , Subcommand :: Install { .. } ) => {
1386
+ ( 0 , Subcommand :: Install ) => {
1387
1387
eprintln ! ( "ERROR: cannot install anything on stage 0. Use at least stage 1." ) ;
1388
1388
exit ! ( 1 ) ;
1389
1389
}
Original file line number Diff line number Diff line change @@ -511,4 +511,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
511
511
severity : ChangeSeverity :: Info ,
512
512
summary : "Build/check now supports forwarding `--timings` flag to cargo." ,
513
513
} ,
514
+ ChangeInfo {
515
+ change_id : 145472 ,
516
+ severity : ChangeSeverity :: Warning ,
517
+ 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+." ,
518
+ } ,
514
519
] ;
You can’t perform that action at this time.
0 commit comments