From f2e5ceb85253f6a4aec236658e0d045566413f86 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Tue, 4 May 2021 11:27:19 +0300 Subject: [PATCH] Change MacPorts to a single word (fix #703) --- src/config.rs | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index a256a763..0a0afd20 100644 --- a/src/config.rs +++ b/src/config.rs @@ -85,7 +85,7 @@ pub enum Step { HomeManager, Jetpack, Krew, - MacPorts, + Macports, Mas, Micro, Myrepos, diff --git a/src/main.rs b/src/main.rs index f05e0942..f4d9cf80 100644 --- a/src/main.rs +++ b/src/main.rs @@ -163,7 +163,7 @@ fn run() -> Result<()> { runner.execute(Step::BrewCask, "Brew Cask (Intel)", || { unix::run_brew_cask(&ctx, unix::BrewVariant::MacIntel) })?; - runner.execute(Step::MacPorts, "MacPorts", || macos::run_macports(&ctx))?; + runner.execute(Step::Macports, "MacPorts", || macos::run_macports(&ctx))?; } #[cfg(unix)]