mirror of https://github.com/grpc/grpc.git
Add sanity check preventing "DO NOT SUBMIT"s from submitting (#27250)
parent
f1e4ddc715
commit
398b44405f
2 changed files with 25 additions and 0 deletions
@ -0,0 +1,24 @@ |
||||
#! /bin/bash |
||||
# Copyright 2021 The gRPC Authors |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
# |
||||
# Checks if any file contains "DO NOT SUBMIT" |
||||
|
||||
cd "$(dirname "$0")/../../.." || exit 1 |
||||
grep -Irn \ |
||||
--exclude='check_do_not_submit.sh' \ |
||||
--exclude-dir='.git/' \ |
||||
--exclude-dir='third_party/' \ |
||||
'DO NOT SUBMIT' |
||||
test $? -eq 1 || exit 1 |
Loading…
Reference in new issue