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 7d3b78e commit 59dd251
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 59dd251

Please sign in to comment.