Merge "[www-index] skip unnecessary 'samples' directory"

This commit is contained in:
Jenkins 2016-07-15 01:13:02 +00:00 committed by Gerrit Code Review
commit 6ae4ae3445
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def generate_index_file(publish_path):
for root, dirs, files in os.walk(publish_path):
dirs[:] = [d for d in dirs if d not in ['common', 'webapp', 'content',
'www']]
'www', 'samples']]
# Ignore top-level index.html files
if root == publish_path: