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 {
13791379 eprintln ! ( "ERROR: cannot run clippy on stage 0. Use at least stage 1." ) ;
13801380 exit ! ( 1 ) ;
13811381 }
1382- ( 0 , Subcommand :: Dist { .. } ) => {
1382+ ( 0 , Subcommand :: Dist ) => {
13831383 eprintln ! ( "ERROR: cannot dist anything on stage 0. Use at least stage 1." ) ;
13841384 exit ! ( 1 ) ;
13851385 }
1386- ( 0 , Subcommand :: Install { .. } ) => {
1386+ ( 0 , Subcommand :: Install ) => {
13871387 eprintln ! ( "ERROR: cannot install anything on stage 0. Use at least stage 1." ) ;
13881388 exit ! ( 1 ) ;
13891389 }
Original file line number Diff line number Diff line change @@ -506,4 +506,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
506506 severity : ChangeSeverity :: Warning ,
507507 summary : "It is no longer possible to `x clippy` with stage 0. All clippy commands have to be on stage 1+." ,
508508 } ,
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+ } ,
509514] ;
You can’t perform that action at this time.
0 commit comments