From 7d2aee8ecacc32cd1a6d4ed0e82084b853f1f5df Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Mon, 21 Mar 2016 11:42:01 -0700 Subject: [PATCH] build: build etcdctlv3 by default Any reason not to? It makes demoing etcd easier with the V3 procfile. --- build | 1 + 1 file changed, 1 insertion(+) diff --git a/build b/build index e08bcc4ef..a6792fbb5 100755 --- a/build +++ b/build @@ -31,3 +31,4 @@ fi # Static compilation is useful when etcd is run in a container CGO_ENABLED=0 go build $GO_BUILD_FLAGS -installsuffix cgo -ldflags "-s -X ${REPO_PATH}/version.GitSHA${LINK_OPERATOR}${GIT_SHA}" -o bin/etcd ${REPO_PATH} CGO_ENABLED=0 go build $GO_BUILD_FLAGS -installsuffix cgo -ldflags "-s" -o bin/etcdctl ${REPO_PATH}/etcdctl +CGO_ENABLED=0 go build $GO_BUILD_FLAGS -installsuffix cgo -ldflags "-s" -o bin/etcdctlv3 ${REPO_PATH}/etcdctlv3