infinity-msfs 0.3.9

Build/packaging/util CLI for infinity-msfs projects.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::cli::SdkInstallArgs;
use anyhow::Result;
use infinity_build_sdk::{
    InstallOptions, run_install as crate_install, run_path as crate_path,
    run_remove as crate_remove,
};

pub fn run_install(args: SdkInstallArgs) -> Result<()> {
    crate_install(InstallOptions { force: args.force })
}

pub fn run_path() -> Result<()> {
    crate_path()
}

pub fn run_remove() -> Result<()> {
    crate_remove()
}