diff --git a/src/search.rs b/src/search.rs index 7b01bb0..55a6ff9 100644 --- a/src/search.rs +++ b/src/search.rs @@ -3,7 +3,7 @@ use std::{ops::Deref, process::Command}; pub fn a_search(pkg: &str) { let results = raur::search(&pkg); for res in &results { - println!("{} {}\n {}", res[0].name, res[0].version, res[0].description.as_ref().map_or("n/a", String::deref)); + println!("aur/{} {}\n {}", res[0].name, res[0].version, res[0].description.as_ref().map_or("n/a", String::deref)); } }