From 3fe90f29573e7c02d3c53e712e6dab92657fe975 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sun, 3 Dec 2023 09:14:39 +0000 Subject: [PATCH] vk/update-aliases.py: sort files when informing the user of the matches Part-of: --- src/vulkan/registry/update-aliases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vulkan/registry/update-aliases.py b/src/vulkan/registry/update-aliases.py index 8ef3201b2bf..c304e38cc71 100755 --- a/src/vulkan/registry/update-aliases.py +++ b/src/vulkan/registry/update-aliases.py @@ -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',