diff options
author | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-27 15:14:47 +0000 |
---|---|---|
committer | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-27 15:14:47 +0000 |
commit | 2b3a341bb5df57fc5766555ff88f53b6b184914b (patch) | |
tree | b5fa8b9515cccd58c3c7772b5a1911b816efcc80 /android_webview | |
parent | c9484346f582e27843ee94c3649d81008f9c3354 (diff) | |
download | chromium_src-2b3a341bb5df57fc5766555ff88f53b6b184914b.zip chromium_src-2b3a341bb5df57fc5766555ff88f53b6b184914b.tar.gz chromium_src-2b3a341bb5df57fc5766555ff88f53b6b184914b.tar.bz2 |
Ignore "*.orig" and "*.rej" files in WebView licence scanning tool.
We have a report that on try servers the patch tool can produce such
files and they confuse the tool.
R=torne@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10982062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159025 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview')
-rwxr-xr-x | android_webview/tools/webview_licenses.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/android_webview/tools/webview_licenses.py b/android_webview/tools/webview_licenses.py index f66a467..aa63b42 100755 --- a/android_webview/tools/webview_licenses.py +++ b/android_webview/tools/webview_licenses.py @@ -88,6 +88,8 @@ def _CheckLicenseHeaders(directory_list, whitelisted_files): args = ['grep', '-rPlI', + '--exclude', '*.orig', + '--exclude', '*.rej', '--exclude-dir', 'third_party', '--exclude-dir', 'out', '--exclude-dir', '.git', |