aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2017-06-21 18:34:15 +0200
committerGravatar GitHub <noreply@github.com>2017-06-21 18:34:15 +0200
commitfd5781a49e6499757337cdd028d947c0c5d6f85c (patch)
treec91bf0724ff1fdc14c72f53b6fe9bdab5b183f5a /tools
parent75e29e4ea9416abcb09723a7d761d49e7402c17c (diff)
parentd2da5aa8a29754ca931a05fdebf9fb246ce8da53 (diff)
Merge pull request #11527 from jtattermusch/core_fix_license
Fix license file
Diffstat (limited to 'tools')
-rwxr-xr-xtools/distrib/check_copyright.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/distrib/check_copyright.py b/tools/distrib/check_copyright.py
index 4179bf1cb8..6ecacede71 100755
--- a/tools/distrib/check_copyright.py
+++ b/tools/distrib/check_copyright.py
@@ -72,7 +72,6 @@ LICENSE_PREFIX = {
'.mak': r'#\s*',
'Makefile': r'#\s*',
'Dockerfile': r'#\s*',
- 'LICENSE': r'\s*',
'BUILD': r'#\s*',
}
@@ -124,7 +123,7 @@ def save(name, text):
with open(name, 'w') as f:
f.write(text)
-assert(re.search(RE_LICENSE['LICENSE'], load('LICENSE')))
+
assert(re.search(RE_LICENSE['Makefile'], load('Makefile')))