Skip to content

Commit

Permalink
UBUNTU: [Packaging] annotations: report failed config checks in alpha…
Browse files Browse the repository at this point in the history
…betic order

This helps to review config failures across different architectures.

Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
  • Loading branch information
Andrea Righi committed Nov 28, 2022
1 parent 888190a commit 906e0bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debian/scripts/misc/annotations
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def do_check(args):
c_configs = c.config.keys()

# Validate .config against annotations
for conf in a_configs | c_configs:
for conf in sorted(a_configs | c_configs):
if conf in SKIP_CONFIGS:
continue
entry = a.search_config(config=conf, arch=args.arch, flavour=args.flavour)
Expand Down

0 comments on commit 906e0bd

Please sign in to comment.