Skip to content

Commit

Permalink
Merge pull request openSUSE#3048 from nilxam/cond_list_order
Browse files Browse the repository at this point in the history
skippkg-finder: sort conditionals set
  • Loading branch information
nilxam committed Jan 22, 2024
2 parents 8329809 + 967e44a commit 105eea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skippkg-finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def crawl(self):

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

0 comments on commit 105eea5

Please sign in to comment.