diff --git a/src/bootstrap/src/core/config/config.rs b/src/bootstrap/src/core/config/config.rs index 485960f42566..7f7d2b3c0340 100644 --- a/src/bootstrap/src/core/config/config.rs +++ b/src/bootstrap/src/core/config/config.rs @@ -1045,6 +1045,10 @@ impl Config { eprintln!("ERROR: cannot dist anything on stage 0. Use at least stage 1."); exit!(1); } + (0, Subcommand::Install { .. }) => { + eprintln!("ERROR: cannot install anything on stage 0. Use at least stage 1."); + exit!(1); + } _ => {} }