also put CC on .proto files

This commit is contained in:
Jeff Carr 2025-02-15 05:33:47 -06:00
parent cb8ebc9e04
commit 2aee70c24e
1 changed files with 3 additions and 0 deletions

View File

@ -103,6 +103,9 @@ func scanForGoFiles(startDir string) ([]string, error) {
if strings.HasSuffix(path, ".go") {
files = append(files, path)
}
if strings.HasSuffix(path, ".proto") {
files = append(files, path)
}
// don't go into any directories
if info.IsDir() {