aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-05-08 12:19:53 +0200
committerTaras Madan <tarasmadan@google.com>2024-05-08 12:15:43 +0000
commit5d520cbcca77cacf034dba2f30042e419bc978f6 (patch)
treea4d6a1579b882a346f8dc4ba623b5fcafd293172 /tools
parent9d9141efac942fc87ed529a9f5c68ef96eb6d707 (diff)
executor: use new flatbuffers location
Diffstat (limited to 'tools')
-rwxr-xr-xtools/check-copyright.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check-copyright.sh b/tools/check-copyright.sh
index 6dd293398..6cab5890d 100755
--- a/tools/check-copyright.sh
+++ b/tools/check-copyright.sh
@@ -6,7 +6,7 @@ FILES=0
FAILED=""
for F in $(find . -name "*.go" -o -name "*.sh" -o -name "*.cc" -o -name "*.h" \
-o -name "*.S" -o -name "*.py" -o -name "*.yml" -o -name "*.yaml" -o -name "*.fbs" \
- -o \( -path "./sys/*/*.txt" \) | egrep -v "/vendor/|/gen/|/testdata/"); do
+ -o \( -path "./sys/*/*.txt" \) | egrep -v "/_include/|/vendor/|/gen/|/testdata/"); do
((FILES+=1))
cat $F | tr '\n' '_' | egrep "(//|#) Copyright 20[0-9]{2}(/20[0-9]{2})? syzkaller project authors\. All rights reserved\._(//|#) Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file\." >/dev/null
if [ $? -eq 0 ]; then continue; fi