kazel: skip third_party/etcd.*

pull/8/head
Jeff Grafton 2018-04-11 16:31:05 -07:00
parent c8cded58d7
commit f9c1355b47
2 changed files with 9 additions and 3 deletions

View File

@ -1,7 +1,8 @@
{ {
"GoPrefix": "k8s.io/kubernetes", "GoPrefix": "k8s.io/kubernetes",
"SkippedPaths": [ "SkippedPaths": [
"^_.*" "^_.*",
"^third_party/etcd.*"
], ],
"AddSourcesRules": true, "AddSourcesRules": true,
"K8sOpenAPIGen": true "K8sOpenAPIGen": true

9
third_party/BUILD vendored
View File

@ -4,8 +4,13 @@ licenses(["notice"])
filegroup( filegroup(
name = "package-srcs", name = "package-srcs",
srcs = glob(["**"]), srcs = glob(
tags = ["automanaged"], ["**"],
exclude = [
"etcd*/**",
"etcd*.tar.gz",
],
),
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
) )