mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-13 20:01:48 +01:00
Fix for sbo packages
This commit is contained in:
parent
829d2f61bb
commit
b2428c69bd
1 changed files with 1 additions and 1 deletions
|
@ -524,7 +524,7 @@ class PackageManager(object):
|
||||||
all_installed_names = []
|
all_installed_names = []
|
||||||
all_installed_packages = find_package("", self.meta.pkg_path)
|
all_installed_packages = find_package("", self.meta.pkg_path)
|
||||||
for inst in all_installed_packages:
|
for inst in all_installed_packages:
|
||||||
if repo == "sbo":
|
if repo == "sbo" and inst.endswith("_SBo"):
|
||||||
name = split_package(inst)[0]
|
name = split_package(inst)[0]
|
||||||
all_installed_names.append(name)
|
all_installed_names.append(name)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue