From 87073ad39823a695fbf8be905ca4e456ae60018c Mon Sep 17 00:00:00 2001 From: Sindre Stephansen Date: Tue, 27 Dec 2022 10:29:15 +0100 Subject: [PATCH] Sort package list --- update-poms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-poms.py b/update-poms.py index 90b47fb..313c7da 100755 --- a/update-poms.py +++ b/update-poms.py @@ -313,7 +313,7 @@ async def main() -> None: logger.info('Generating list of all packages') async with done_lock: with open(output_path, 'w') as f: - for p in done: + for p in sorted(done): f.write(p + '\n')