MacPorts (fix #331) (#341)

This commit is contained in:
Roey Darwish Dror
2020-02-27 20:28:50 +02:00
committed by GitHub
parent 2b89f87a37
commit 62a154bc27
2 changed files with 21 additions and 1 deletions

View File

@@ -141,7 +141,8 @@ fn run() -> Result<()> {
{
if config.should_run(Step::PackageManagers) {
runner.execute("brew", || unix::run_homebrew(config.cleanup(), run_type))?;
#[cfg(target_os = "macos")]
runner.execute("MacPorts", || macos::run_macports(&ctx))?;
runner.execute("nix", || unix::run_nix(&ctx))?;
runner.execute("home-manager", || unix::run_home_manager(run_type))?;
}