Skip to content

Commit f81fc59

Browse files
authored
fix(release): missed a public API symbol that requires re-export (#1094)
Broken by #1083
1 parent aeba88b commit f81fc59

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/tar.bzl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
"""Re-export of https://registry.bazel.build/modules/tar.bzl to avoid breaking change.
2+
https://github.com/bazel-contrib/bazel-lib/pull/1083 moved these symbols to tar.bzl
23
TODO(3.0): delete
34
"""
45

56
load("@tar.bzl//tar:mtree.bzl", _mtree_mutate = "mtree_mutate", _mtree_spec = "mtree_spec")
6-
load("@tar.bzl//tar:tar.bzl", _tar = "tar")
7+
load("@tar.bzl//tar:tar.bzl", _tar = "tar", _tar_lib = "tar_lib", _tar_rule = "tar_rule")
78

89
mtree_mutate = _mtree_mutate
910
mtree_spec = _mtree_spec
1011
tar = _tar
12+
tar_lib = _tar_lib
13+
tar_rule = _tar_rule

0 commit comments

Comments
 (0)