mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
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:
parent
d8b38ec4a3
commit
3fe90f2957
1 changed files with 1 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue