Skip to content
Snippets Groups Projects
Commit d14f0f99 authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Sort the projects when doing checkall.

Bug: N/A
Test: manual
Change-Id: Ided170a655d5efe5a3026ceb7bd385ed91baa347
parent 3f73a459
No related branches found
No related tags found
No related merge requests found
......@@ -128,7 +128,7 @@ def update(args):
def checkall(args):
"""Handler for checkall command."""
for root, _dirs, files in os.walk(args.path):
for root, _dirs, files in sorted(os.walk(args.path)):
if fileutils.METADATA_FILENAME in files:
check_update(root)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment