lux-cli 0.29.3

A luxurious package manager for Lua
Documentation
use eyre::{OptionExt, Result};
use lux_lib::{
    config::Config,
    lua_installation::LuaInstallation,
    lua_version::LuaVersion,
    progress::{MultiProgress, ProgressBar},
};

pub async fn install_lua(config: Config) -> Result<()> {
    let version_stringified = &LuaVersion::from(&config)?;

    let progress = MultiProgress::new(&config);

    let bar = progress.map(|progress| {
        progress.add(ProgressBar::from(format!(
            "🌔 Installing Lua ({version_stringified})",
        )))
    });

    // TODO: Detect when path already exists by checking `Lua::path()` and prompt the user
    // whether they'd like to forcefully reinstall.
    let lua = LuaInstallation::install(version_stringified, &config, &bar).await?;
    let lua_root = lua
        .includes()
        .first()
        .and_then(|dir| dir.parent())
        .ok_or_eyre("error getting lua include parent directory")?;

    bar.map(|bar| {
        bar.finish_with_message(format!(
            "🌔 Installed Lua ({}) to {}",
            version_stringified,
            lua_root.display()
        ))
    });

    Ok(())
}