Skip to content
Snippets Groups Projects
Commit 13092ffe authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Sort the projects when doing checkall.

am: d14f0f99

Change-Id: I1b7216ac7adbe409b92176166ff7a1cc5d09a243
parents 08985a7a d14f0f99
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