Skip to content

Commit

Permalink
style: Include MPR packages in generate_pkginfo_entries
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkroot committed Nov 15, 2022
1 parent 1216e61 commit 5473bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/style.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ pub fn generate_pkginfo_entries<T: AsRef<str>>(
&& !pkg.is_installed()
{
continue;
} else if cache.apt_cache().get(pkgname).is_none() {
} else if cache.apt_cache().get(pkgname).is_none() && !cache.mpr_cache().packages().contains_key(pkgname) {
continue;
}

Expand Down

0 comments on commit 5473bc8

Please sign in to comment.