Fix scripts to avoid testdata

This commit is contained in:
Tim Hockin
2024-01-06 23:35:52 -08:00
parent 514dd0e1f6
commit db590ecd89
5 changed files with 6 additions and 2 deletions

View File

@@ -53,7 +53,8 @@ function git_find() {
':!:vendor/*' `# catches vendor/...` \
':!:*/vendor/*' `# catches any subdir/vendor/...` \
':!:third_party/*' `# catches third_party/...` \
':!:*/third_party/*' `# catches third_party/...` \
':!:*/third_party/*' `# catches any subdir/third_party/...` \
':!:*/testdata/*' `# catches any subdir/testdata/...` \
':(glob)**/*.go' \
"$@"
}