Skip to content

Commit

Permalink
Be explicit about alowing empty globs (second part)
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 bb8c89a commit 7d3b78e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/googleapis/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ exports_files(["LICENSE"])

filegroup(
name = "srcs",
srcs = glob(["**"]),
srcs = glob(["**"], allow_empty = True),
visibility = ["@io_bazel//third_party:__pkg__"],
)

Expand Down

0 comments on commit 7d3b78e

Please sign in to comment.