Skip to content

Commit

Permalink
Fix up @build_tools//tools/java package
Browse files Browse the repository at this point in the history
bazelbuild#12994 added the file, but it's
currently exposed as:
`@build_tools//tools:java/java_stub_template.txt`

This fixes it up to be properly exposed as:
`@build_tools//tools/java:java_stub_template.txt`

Which makes more sense :)
  • Loading branch information
illicitonion committed Aug 4, 2021
1 parent bdd5d49 commit f1b22cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/java/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ filegroup(
name = "srcs",
srcs = [
"BUILD",
"BUILD.tools",
"//tools/java/runfiles:srcs",
],
visibility = ["//tools:__pkg__"],
Expand All @@ -21,6 +22,10 @@ genrule(

filegroup(
name = "embedded_tools",
srcs = ["//tools/java/runfiles:embedded_tools"],
srcs = [
"BUILD.tools",
":java_stub_template.txt",
"//tools/java/runfiles:embedded_tools",
],
visibility = ["//tools:__pkg__"],
)
1 change: 1 addition & 0 deletions tools/java/BUILD.tools
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exports_files(["java_stub_template.txt"])

0 comments on commit f1b22cd

Please sign in to comment.