Skip to content

Commit

Permalink
Annotate more globs with allow_empty = True (#1674)
Browse files Browse the repository at this point in the history
* Annotate more globs with `allow_empty = True`

* Update BUILD.bazel
  • Loading branch information
fmeum authored Nov 25, 2023
1 parent 0205c20 commit d935492
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion language/go/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ go_test(
"stubs_test.go",
"update_import_test.go",
],
data = glob(["testdata/**"]),
data = glob(
["testdata/**"],
# Empty when distributed.
allow_empty = True,
),
embed = [":go"],
deps = [
"//config",
Expand Down

0 comments on commit d935492

Please sign in to comment.