Module: Mesa
Branch: main
Commit: 3fe90f29573e7c02d3c53e712e6dab92657fe975
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=3fe90f29573e7c02d3c53e712e6dab92657fe975

Author: Eric Engestrom <[email protected]>
Date:   Sun Dec  3 09:14:39 2023 +0000

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

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26484>

---

 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',

Reply via email to