skippkg-finder: sort conditionals set

This commit is contained in:
Max Lin 2024-01-22 17:28:18 +08:00
parent 8329809782
commit 967e44ad1f

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(':')