Skip to content
Snippets Groups Projects
Commit ced3bed8 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

am: 9c44cc08

Change-Id: Ic1a7727c6072bdac0ff8b49a24f7d124c41b1d0d
parents b0bae9ac 9c44cc08
Branches
No related tags found
No related merge requests found
...@@ -128,7 +128,7 @@ def update(args): ...@@ -128,7 +128,7 @@ def update(args):
def checkall(args): def checkall(args):
"""Handler for checkall command.""" """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: if fileutils.METADATA_FILENAME in files:
check_update(root) check_update(root)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment