Skip to content

Commit 2dc9e2a

Browse files
committed
Fix bazel build //:tarfile
The packaging target wasn't public and it failed to be referenced by the top-level alias, mirroring the earlier //:install fix. Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
1 parent 248e73e commit 2dc9e2a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packaging/BUILD.bazel

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,8 @@ pkg_tar(
1616
srcs = ["//:openroad"],
1717
include_runfiles = True,
1818
package_file_name = "openroad.tar",
19-
visibility = ["//test:__subpackages__"],
19+
visibility = [
20+
"//:__pkg__",
21+
"//test:__subpackages__",
22+
],
2023
)

0 commit comments

Comments
 (0)