mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Fixed for search option
This commit is contained in:
parent
3bd4644e77
commit
6961c578ed
1 changed files with 5 additions and 5 deletions
|
@ -189,16 +189,16 @@ class Argparse:
|
||||||
for package in repo_packages:
|
for package in repo_packages:
|
||||||
for pkg in packages:
|
for pkg in packages:
|
||||||
|
|
||||||
if method == 'install' and pkg in package:
|
if method == 'upgrade' and pkg == package:
|
||||||
repo_ver = SBoQueries(package).version()
|
|
||||||
choices += [(package, repo_ver, False)]
|
|
||||||
|
|
||||||
elif method == 'upgrade' and pkg == package:
|
|
||||||
repo_ver = SBoQueries(package).version()
|
repo_ver = SBoQueries(package).version()
|
||||||
pkg = self.utils.is_installed(package)
|
pkg = self.utils.is_installed(package)
|
||||||
inst_ver = self.utils.split_installed_pkg(pkg)[1]
|
inst_ver = self.utils.split_installed_pkg(pkg)[1]
|
||||||
choices += [(package, f'{inst_ver} -> {repo_ver}', True)]
|
choices += [(package, f'{inst_ver} -> {repo_ver}', True)]
|
||||||
|
|
||||||
|
elif pkg in package:
|
||||||
|
repo_ver = SBoQueries(package).version()
|
||||||
|
choices += [(package, repo_ver, False)]
|
||||||
|
|
||||||
if not choices:
|
if not choices:
|
||||||
return packages
|
return packages
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue