Commit b7923b73 authored by Jeff Grafton's avatar Jeff Grafton

Remove all upstream BUILD, BUILD.bazel, and WORKSPACE files from vendor/

parent 2e433e81
...@@ -81,6 +81,11 @@ done ...@@ -81,6 +81,11 @@ done
rm -rf vendor/github.com/docker/docker/project/ rm -rf vendor/github.com/docker/docker/project/
kube::log::status "Updating BUILD files" kube::log::status "Updating BUILD files"
# Assume that anything imported through godep doesn't need Bazel to build.
# Prune out any Bazel build files, since these can break the build due to
# missing dependencies that aren't included by godep.
find vendor/ -type f \( -name BUILD -o -name BUILD.bazel -o -name WORKSPACE \) \
-exec rm -f {} \;
hack/update-bazel.sh >/dev/null hack/update-bazel.sh >/dev/null
kube::log::status "Updating LICENSES file" kube::log::status "Updating LICENSES file"
......
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