check_layout.py: Deterministic output order

This commit is contained in:
Jules Aguillon
2023-09-03 20:15:31 +02:00
parent 816269aed0
commit 86038ef512
2 changed files with 9 additions and 9 deletions

View File

@ -83,7 +83,7 @@ def check_layout(layout):
if root.get("script") == None:
warn("Layout doesn't specify a script.")
for fname in sys.argv[1:]:
for fname in sorted(sys.argv[1:]):
if fname in KNOWN_NOT_LAYOUT:
continue
layout = parse_layout(fname)