juliaup 1.20.1

Julia installer and version multiplexer
Documentation
#[cfg(feature = "selfupdate")]
use anyhow::Result;

#[cfg(feature = "selfupdate")]
pub fn run_command_selfchannel(
    channel: Option<crate::cli::JuliaupChannel>,
    paths: &crate::global_paths::GlobalPaths,
) -> Result<()> {
    use crate::config_file::{load_mut_config_db, save_config_db};
    use anyhow::Context;

    let mut config_file = load_mut_config_db(paths)
        .with_context(|| "`self channel` command failed to load configuration data.")?;

    match channel {
        Some(chan) => {
            config_file.self_data.juliaup_channel = Some(chan.to_lowercase().to_string());
            save_config_db(&mut config_file, paths).with_context(|| {
                format!(
                    "`self channel` command failed to save configuration db at `{}`.",
                    paths.juliaupconfig.display()
                )
            })?;
        }
        None => {
            let channel_name = config_file
                .self_data
                .juliaup_channel
                .expect("juliaup_channel should not be empty.");
            println!("Your juliaup is currently on channel `{}`. Run `juliaup self channel -h` for help on how to set the juliaup channel.", channel_name);
        }
    }

    Ok(())
}