Skip to content

Commit

Permalink
Eclean-invalids: Suppress invalid binary error from portage
Browse files Browse the repository at this point in the history
Signed-off-by: Siddhanth Rathod <[email protected]>
  • Loading branch information
hyprsyd committed Oct 5, 2023
1 parent 8f2f871 commit ea408b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pym/gentoolkit/eclean/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def findPackages(
settings = var_dbapi.settings
bin_dbapi = portage.binarytree(pkgdir=pkgdir, settings=settings).dbapi
if "force_reindex" in signature(bin_dbapi.bintree.populate).parameters:
bin_dbapi.bintree.populate(force_reindex=True)
bin_dbapi.bintree.populate(force_reindex=True, invalid_errors=False)
for cpv in bin_dbapi.cpv_all():
cp = portage.cpv_getkey(cpv)

Expand Down

0 comments on commit ea408b6

Please sign in to comment.