We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 133d942 + 09f6c46 commit 789beadCopy full SHA for 789bead
src/query.rs
@@ -52,7 +52,11 @@ pub async fn print_upgrade_list(config: &mut Config) -> Result<i32> {
52
}
53
54
let mut args = config.pacman_args();
55
- args.remove("u").remove("upgrades").arg("q");
+ args.remove("u")
56
+ .remove("upgrades")
57
+ .remove("i")
58
+ .remove("info")
59
+ .arg("q");
60
args.targets = aur.into_iter().collect();
61
let output = exec::pacman_output(config, &args)?;
62
let aur = String::from_utf8(output.stdout)?;
0 commit comments