Skip to content

Commit

Permalink
Bazel Docs: Prevent automated restriction of visibility.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 482781899
Change-Id: Iec4af62bb0a3766bf01d2ab398b95a151eb94ac0
  • Loading branch information
fweikert authored and Copybara-Service committed Oct 21, 2022
1 parent 79a53de commit 9d98d7f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions site/en/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ filegroup(
name = "srcs",
srcs = glob(["**"]),
visibility = [
"//scripts/docs:__pkg__",
"//site:__pkg__",
"//scripts/docs:__pkg__", # Scheuklappen: keep
"//site:__pkg__", # Scheuklappen: keep
],
)

Expand All @@ -30,5 +30,7 @@ pkg_tar(
exclude = ["**/BUILD"],
),
strip_prefix = "/site/en",
visibility = ["//scripts/docs:__pkg__"],
visibility = [
"//scripts/docs:__pkg__", # Scheuklappen: keep
],
)

0 comments on commit 9d98d7f

Please sign in to comment.