aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/distrib/check_copyright.py
diff options
context:
space:
mode:
authorGravatar Eric Gribkoff <ericgribkoff@google.com>2018-04-03 16:21:37 -0700
committerGravatar Eric Gribkoff <ericgribkoff@google.com>2018-04-05 11:39:54 -0700
commitf9fb3ebf1f136490bf6bffcdfed1b71594a34950 (patch)
tree493b3d17c806146a09bd72c167515db1163e8b4b /tools/distrib/check_copyright.py
parent5a03bdb62209ac81e813b1b5ff5ff4aafbca42f4 (diff)
gRPC C++ Interop App
Diffstat (limited to 'tools/distrib/check_copyright.py')
-rwxr-xr-xtools/distrib/check_copyright.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/distrib/check_copyright.py b/tools/distrib/check_copyright.py
index e7893a1fd5..66acc733e5 100755
--- a/tools/distrib/check_copyright.py
+++ b/tools/distrib/check_copyright.py
@@ -93,8 +93,9 @@ _EXEMPT = frozenset((
# status.proto copied from googleapis
'src/proto/grpc/status/status.proto',
- # Gradle wrapper used to build for Android
+ # Gradle wrappers used to build for Android
'examples/android/helloworld/gradlew.bat',
+ 'src/android/test/interop/gradlew.bat',
))
RE_YEAR = r'Copyright (?P<first_year>[0-9]+\-)?(?P<last_year>[0-9]+) gRPC authors.'