Skip to content

Commit

Permalink
Be explicit about alowing empty globs
Browse files Browse the repository at this point in the history
There are several globs that are empty and this prevents building
with the incompatible flag #8195.
This commit just makes it explicit that empty is allowed.
  • Loading branch information
limdor committed Aug 29, 2022
1 parent 877ac40 commit 83844e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/build_defs/pkg/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ py_library(

filegroup(
name = "archive_testdata",
srcs = glob(["testdata/**"]),
srcs = glob(
["testdata/**"],
allow_empty = True,
),
)

py_test(
Expand Down

0 comments on commit 83844e1

Please sign in to comment.