aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-11-02 19:14:46 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2017-11-02 19:14:46 -0700
commitcd987a0b2f3d6608c6fc959c3b1af42535d2cbc8 (patch)
treee52c78823903ba4d03493a745cb66af478cf1199 /tools/dockerfile
parent2f921a3f9727859d36c77c8af61c84877e73e880 (diff)
Adding public_headers_must_be_c89 as a clang exception
Diffstat (limited to 'tools/dockerfile')
-rwxr-xr-xtools/dockerfile/grpc_clang_format/clang_format_all_the_things.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dockerfile/grpc_clang_format/clang_format_all_the_things.sh b/tools/dockerfile/grpc_clang_format/clang_format_all_the_things.sh
index c471344157..9bbb5d4dc1 100755
--- a/tools/dockerfile/grpc_clang_format/clang_format_all_the_things.sh
+++ b/tools/dockerfile/grpc_clang_format/clang_format_all_the_things.sh
@@ -29,7 +29,7 @@ for dir in $DIRS
do
for glob in $GLOB
do
- files="$files `find ${CLANG_FORMAT_ROOT}/$dir -name $glob -and -not -name *.generated.* -and -not -name *.pb.h -and -not -name *.pb.c -and -not -name *.pb.cc -and -not -name end2end_tests.c -and -not -name end2end_nosec_tests.c`"
+ files="$files `find ${CLANG_FORMAT_ROOT}/$dir -name $glob -and -not -name *.generated.* -and -not -name *.pb.h -and -not -name *.pb.c -and -not -name *.pb.cc -and -not -name end2end_tests.c -and -not -name end2end_nosec_tests.c -and -not -name public_headers_must_be_c89.c`"
done
done