Skip to content

Commit

Permalink
kazel: skip third_party/etcd.*
Browse files Browse the repository at this point in the history
  • Loading branch information
ixdy committed Apr 11, 2018
1 parent c8cded5 commit f9c1355
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build/root/.kazelcfg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"GoPrefix": "k8s.io/kubernetes",
"SkippedPaths": [
"^_.*"
"^_.*",
"^third_party/etcd.*"
],
"AddSourcesRules": true,
"K8sOpenAPIGen": true
Expand Down
9 changes: 7 additions & 2 deletions third_party/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ licenses(["notice"])

filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
srcs = glob(
["**"],
exclude = [
"etcd*/**",
"etcd*.tar.gz",
],
),
visibility = ["//visibility:private"],
)

Expand Down

0 comments on commit f9c1355

Please sign in to comment.