diff --git a/cluster/BUILD b/cluster/BUILD index 86387ceccc..a5b4fbd002 100644 --- a/cluster/BUILD +++ b/cluster/BUILD @@ -51,26 +51,26 @@ pkg_tar( sh_test( name = "common_test", srcs = ["common.sh"], - data = [ - ":all-srcs", + deps = [ + "//cluster/lib", + "//hack/lib", ], - deps = ["//hack/lib"], ) sh_test( name = "clientbin_test", srcs = ["clientbin.sh"], - data = [ - ":all-srcs", + deps = [ + "//cluster/lib", + "//hack/lib", ], - deps = ["//hack/lib"], ) sh_test( name = "kube-util_test", srcs = ["kube-util.sh"], - data = [ - ":all-srcs", + deps = [ + "//cluster/lib", + "//hack/lib", ], - deps = ["//hack/lib"], )