mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Updated check for sorted
This commit is contained in:
parent
f9dd3d6fdc
commit
57b06c3623
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ class Upgrade(Configs):
|
||||||
for repo, data in repo_data.items():
|
for repo, data in repo_data.items():
|
||||||
self.load_installed_packages(repo)
|
self.load_installed_packages(repo)
|
||||||
|
|
||||||
for installed in self.installed_packages:
|
for installed in sorted(self.installed_packages):
|
||||||
name: str = self.utils.split_package(installed.name)['name']
|
name: str = self.utils.split_package(installed.name)['name']
|
||||||
|
|
||||||
if data.get(name):
|
if data.get(name):
|
||||||
|
|
Loading…
Reference in a new issue