aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/sanitize_source_files.py
diff options
context:
space:
mode:
authorGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-11 13:01:27 +0000
committerGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-11 13:01:27 +0000
commit7aa8044da565653ba9b16e296a86cd66870e3509 (patch)
treee0b4cff3b4a179ea9c02def032de8d3952d7e37a /tools/sanitize_source_files.py
parentac61ce4ab901ae80e4fae51344485dbc75d31477 (diff)
Ignore the .git directory in sanitize_source_files, remove .git directory...
R=rmistry@google.com Review URL: https://codereview.chromium.org/23981006 git-svn-id: http://skia.googlecode.com/svn/trunk@11193 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools/sanitize_source_files.py')
-rwxr-xr-xtools/sanitize_source_files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sanitize_source_files.py b/tools/sanitize_source_files.py
index c7edaa0bd2..9fd6d3272d 100755
--- a/tools/sanitize_source_files.py
+++ b/tools/sanitize_source_files.py
@@ -13,7 +13,7 @@ import sys
_FILE_EXTENSIONS_TO_SANITIZE = ['cpp', 'h', 'c', 'gyp', 'gypi']
-_SUBDIRS_TO_IGNORE = ['.svn', 'third_party']
+_SUBDIRS_TO_IGNORE = ['.git', '.svn', 'third_party']
def SanitizeFilesWithModifiers(directory, file_modifiers, line_modifiers):