mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-29 10:26:12 +01:00
Fixed for search
This commit is contained in:
parent
ffd4a60dee
commit
14018ac071
1 changed files with 4 additions and 1 deletions
|
@ -285,7 +285,10 @@ class Argparse(Configs):
|
|||
self.check_for_bin_repositories()
|
||||
|
||||
if self.utils.is_option(self.flag_binaries, self.flags):
|
||||
self.data: dict = BinQueries(self.binary_repo).repository_data()
|
||||
if self.binary_repo == '*':
|
||||
self.data: dict = BinQueries('').repositories_data()
|
||||
else:
|
||||
self.data: dict = BinQueries(self.binary_repo).repository_data()
|
||||
else:
|
||||
self.data: dict = SBoQueries().repository_data()
|
||||
|
||||
|
|
Loading…
Reference in a new issue