Skip to content

Commit 77aa19d

Browse files
authored
fix(internal/gapicgen): fix a compute filtering (#5111)
1 parent aa5bed6 commit 77aa19d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/gapicgen/generator/genproto.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ func (g *GenprotoGenerator) getUpdatedPackages(googleapisHash string) (map[strin
215215
if !strings.HasSuffix(v, ".proto") {
216216
continue
217217
}
218-
if !strings.HasSuffix(v, "compute_small.proto") {
218+
if strings.HasSuffix(v, "compute_small.proto") {
219219
continue
220220
}
221221
path := filepath.Join(g.googleapisDir, v)

0 commit comments

Comments
 (0)