Commit 2576b561 authored by Matt Bruzek's avatar Matt Bruzek

Fixing an error I saw in testing, that make clean resolves.

parent ccb1b658
...@@ -31,6 +31,8 @@ function verify-prereqs() { ...@@ -31,6 +31,8 @@ function verify-prereqs() {
} }
function build-local() { function build-local() {
# Make a clean environment to avoid compiler errors.
make clean
# Build the binaries locally that are used in the charms. # Build the binaries locally that are used in the charms.
make all WHAT="cmd/kube-apiserver cmd/kubectl cmd/kube-controller-manager plugin/cmd/kube-scheduler cmd/kubelet cmd/kube-proxy" make all WHAT="cmd/kube-apiserver cmd/kubectl cmd/kube-controller-manager plugin/cmd/kube-scheduler cmd/kubelet cmd/kube-proxy"
OUTPUT_DIR=_output/local/bin/linux/amd64 OUTPUT_DIR=_output/local/bin/linux/amd64
......
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