diff options
Diffstat (limited to 'chrome/common/extensions/docs/build/build.py')
-rwxr-xr-x | chrome/common/extensions/docs/build/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/docs/build/build.py b/chrome/common/extensions/docs/build/build.py index 02259ed..d1acc3c 100755 --- a/chrome/common/extensions/docs/build/build.py +++ b/chrome/common/extensions/docs/build/build.py @@ -162,7 +162,7 @@ def GetStaticFileNames(): static_files = os.listdir(_static_dir) return set(os.path.splitext(file_name)[0] for file_name in static_files - if file_name.endswith(".html")) + if file_name.endswith(".html") and not file_name.startswith(".")) def main(): # Prevent windows from using cygwin python. |