Support pkgin (fix #748)

This commit is contained in:
Roey Darwish Dror
2021-09-02 06:14:56 +03:00
parent 497fc4f97e
commit 611f69646e
3 changed files with 20 additions and 0 deletions

View File

@@ -173,6 +173,7 @@ fn run() -> Result<()> {
runner.execute(Step::Nix, "nix", || unix::run_nix(&ctx))?;
runner.execute(Step::HomeManager, "home-manager", || unix::run_home_manager(run_type))?;
runner.execute(Step::Asdf, "asdf", || unix::run_asdf(run_type))?;
runner.execute(Step::Pkgin, "pkgin", || unix::run_pkgin(&ctx))?;
}
#[cfg(target_os = "dragonfly")]