Skip to content

Commit

Permalink
fix(internal/gapicgen): fix a compute filtering (#5111)
Browse files Browse the repository at this point in the history
  • Loading branch information
codyoss committed Nov 11, 2021
1 parent aa5bed6 commit 77aa19d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/gapicgen/generator/genproto.go
Expand Up @@ -215,7 +215,7 @@ func (g *GenprotoGenerator) getUpdatedPackages(googleapisHash string) (map[strin
if !strings.HasSuffix(v, ".proto") {
continue
}
if !strings.HasSuffix(v, "compute_small.proto") {
if strings.HasSuffix(v, "compute_small.proto") {
continue
}
path := filepath.Join(g.googleapisDir, v)
Expand Down

0 comments on commit 77aa19d

Please sign in to comment.