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

Sort the projects when doing checkall. am: d14f0f99

am: 13092ffe

Change-Id: I2b32b5d87ffba16cf0c4ccc6e42d2c00eee80f99
parents cfe0192f 13092ffe
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