zoi-cli 1.25.4

Advanced Package Manager & Environment Orchestrator
Documentation
//! Logic for the `upgrade` command.

use anyhow::Result;
use colored::Colorize;

use crate::pkg;

/// Run the upgrade command.
///
/// # Errors
///
/// Returns an error if the upgrade fails.
pub fn run(
    branch: &str,
    status: &str,
    number: &str,
    force: bool,
    tag: Option<String>,
    custom_branch: Option<String>
) -> Result<()> {
    println!("{} Upgrading Zoi...", "::".bold().blue());

    match pkg::upgrade::run(branch, status, number, force, tag, custom_branch) {
        Ok(()) => {}
        Err(e) if e.to_string() == "already_on_latest" => {}
        Err(e) => return Err(e)
    }
    Ok(())
}