Merge pull request #208 from thockin/master

Minor: allow hack/build-go.sh to take args for faster iteration.
This commit is contained in:
Daniel Smith 2014-06-23 12:17:46 -07:00
commit 5785a84edf

View File

@ -24,6 +24,10 @@ cd "${KUBE_TARGET}"
BINARIES="proxy integration apiserver controller-manager kubelet cloudcfg localkube"
if [ $# -gt 0 ]; then
BINARIES="$@"
fi
for b in $BINARIES; do
echo "+++ Building ${b}"
go build "${KUBE_GO_PACKAGE}"/cmd/${b}