Commit b7ecd72b authored by Matt Liggett's avatar Matt Liggett

Depend on //cluster/lib instead of :all-srcs.

Cleanup after #51649 Bug: #51642
parent 92db97df
...@@ -51,26 +51,26 @@ pkg_tar( ...@@ -51,26 +51,26 @@ pkg_tar(
sh_test( sh_test(
name = "common_test", name = "common_test",
srcs = ["common.sh"], srcs = ["common.sh"],
data = [ deps = [
":all-srcs", "//cluster/lib",
"//hack/lib",
], ],
deps = ["//hack/lib"],
) )
sh_test( sh_test(
name = "clientbin_test", name = "clientbin_test",
srcs = ["clientbin.sh"], srcs = ["clientbin.sh"],
data = [ deps = [
":all-srcs", "//cluster/lib",
"//hack/lib",
], ],
deps = ["//hack/lib"],
) )
sh_test( sh_test(
name = "kube-util_test", name = "kube-util_test",
srcs = ["kube-util.sh"], srcs = ["kube-util.sh"],
data = [ deps = [
":all-srcs", "//cluster/lib",
"//hack/lib",
], ],
deps = ["//hack/lib"],
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment