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 @@ -506,4 +506,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
506
506
severity : ChangeSeverity :: Warning ,
507
507
summary : "It is no longer possible to `x clippy` with stage 0. All clippy commands have to be on stage 1+." ,
508
508
} ,
509
+ ChangeInfo {
510
+ change_id : 145472 ,
511
+ severity : ChangeSeverity :: Warning ,
512
+ 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+." ,
513
+ } ,
509
514
] ;
You can’t perform that action at this time.
0 commit comments