vk/update-aliases.py: sort files when informing the user of the matches

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26484>
This commit is contained in:
Eric Engestrom 2023-12-03 09:14:39 +00:00 committed by Marge Bot
parent d8b38ec4a3
commit 3fe90f2957

View file

@ -120,7 +120,7 @@ def main(paths: list[str]):
sys.exit(0)
print(f'{len(files_with_aliases)} files contain aliases:')
print('\n'.join(f'- {file}' for file in files_with_aliases))
print('\n'.join(f'- {file}' for file in sorted(files_with_aliases)))
command = [
'sed',