mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-05 11:02:14 +01:00
Fixed pkg pattern search
This commit is contained in:
parent
eeaf06ea60
commit
5fd2dad816
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ class SearchPackage(Configs):
|
|||
for pkg in packages:
|
||||
for pr in pkg_repo:
|
||||
|
||||
if pkg in pr:
|
||||
if pkg in pr or pkg == '*':
|
||||
matching += 1
|
||||
|
||||
desc: str = BinQueries(pr, repo).description()
|
||||
|
|
Loading…
Reference in a new issue