diff --git a/src/config.rs b/src/config.rs index 49309429..bbdc3a66 100644 --- a/src/config.rs +++ b/src/config.rs @@ -86,6 +86,7 @@ pub enum Step { Jetpack, Krew, MacPorts, + Mas, Micro, MicrosoftAutoUpdate, MicrosoftStore, diff --git a/src/main.rs b/src/main.rs index 86f686d3..ebdaf6e9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -341,7 +341,7 @@ fn run() -> Result<()> { #[cfg(target_os = "macos")] { - runner.execute(Step::System, "App Store", || macos::run_mas(run_type))?; + runner.execute(Step::Mas, "App Store", || macos::run_mas(run_type))?; runner.execute(Step::System, "System upgrade", || macos::upgrade_macos(&ctx))?; }