You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amethyst/src/operations/aur_install.rs

16 lines
355 B
Rust

3 years ago
pub fn aur_install(a: Vec<String>, verbosity: i32) {
match verbosity {
0 => {}
1 => {
eprintln!("Installing from AUR:");
eprintln!("{:?}", &a);
}
_ => {
eprintln!("Installing from AUR:");
for b in a {
eprintln!("{:?}", b);
}
}
}
}