Skip to content
Snippets Groups Projects
Commit 1667537f authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4981759 from 894a14dc to qt-release

Change-Id: I381dc348e2737d1ae2c0d5967be07d74f738f23d
parents 81e09de0 894a14dc
No related branches found
No related tags found
No related merge requests found
......@@ -128,8 +128,11 @@ def update(args):
def checkall(args):
"""Handler for checkall command."""
for root, _dirs, files in sorted(os.walk(args.path)):
for root, dirs, files in os.walk(args.path):
dirs.sort(key=lambda d: d.lower())
if fileutils.METADATA_FILENAME in files:
# Skip sub directories.
dirs = []
check_update(root)
......
......@@ -34,6 +34,7 @@ function CopyIfPresent() {
echo "Copying preserved files..."
CopyIfPresent "Android.bp"
CopyIfPresent "Android.mk"
CopyIfPresent "CleanSpec.mk"
CopyIfPresent "LICENSE"
CopyIfPresent "NOTICE"
cp -a -f -n $external_dir/MODULE_LICENSE_* .
......
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