Merge pull request #3048 from nilxam/cond_list_order

skippkg-finder: sort conditionals set
This commit is contained in:
Max Lin 2024-01-22 17:48:34 +08:00 committed by GitHub
commit 105eea5f93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -345,7 +345,7 @@ class SkippkgFinder(object):
# Handle the conditionals
cond_list = {}
for item in self.skiplist_conditionals:
for item in sorted(self.skiplist_conditionals):
# node[0] is the condition, node[1] is the package
# an example of the format: only_x86_64:glibc-32bit
node = item.split(':')