Browse Source

Sort package list

wip/coursier
Sindre Stephansen 2 years ago
parent
commit
87073ad398
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      update-poms.py

+ 1
- 1
update-poms.py View File

@@ -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')




Loading…
Cancel
Save