Skip to content

Commit

Permalink
fix: omit-snippets for bazel (#1254)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz authored Mar 9, 2023
1 parent 822f831 commit 76efded
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ following attributes:
* Default is `False`.
* Only effective when `rest` is included as a `transport` to be generated.

* `omit_snippets`: if `True`, code snippets will be generated to the `internal/generated/snippets` path. The default is `false`.
* `omit_snippets`: if `True`, code snippets will be generated to the `internal/generated/snippets` path. The default is `True`.

Docker Wrapper
--------------
Expand Down
2 changes: 1 addition & 1 deletion rules_go_gapic/go_gapic.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def go_gapic_library(
transport = "grpc",
diregapic = False,
rest_numeric_enums = False,
omit_snippets = False,
omit_snippets = True,
**kwargs):

file_args = {}
Expand Down

0 comments on commit 76efded

Please sign in to comment.