Skip to content

Commit 65d63f1

Browse files
authored
Merge pull request #25671 from apple/update-checkout-sha-info
2 parents f5f3b5c + 5832743 commit 65d63f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/update_checkout/update_checkout/update_checkout.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,8 @@ def repo_hashes(config):
342342

343343
def print_repo_hashes(config):
344344
repos = repo_hashes(config)
345-
for repo_name, repo_hash in repos.iteritems():
345+
for repo_name, repo_hash in sorted(repos.items(),
346+
key=lambda x: x[0]):
346347
print("{:<35}: {:<35}".format(repo_name, repo_hash))
347348

348349

0 commit comments

Comments
 (0)