zoi-rs 1.12.0

Universal Package Manager & Environment Setup Tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::pkg;
use anyhow::Result;

pub fn run(
    source: String,
    args: Vec<String>,
    upstream: bool,
    cache: bool,
    local: bool,
) -> Result<i32> {
    pkg::exec::run(&source, args, upstream, cache, local)
}