This commit is contained in:
Seth Vargo 2015-10-22 15:00:35 -04:00
parent 6c528f0ff2
commit 593452b422
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ all: deps format
bin: generate
@sh -c "'$(CURDIR)/scripts/build.sh'"
# dev creates binares for testing locally. There are put into ./bin and $GOPATH
# dev creates binaries for testing locally - these are put into ./bin and $GOPATH
dev: generate
@CONSUL_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"

View File

@ -30,7 +30,7 @@ rm -f bin/*
rm -rf pkg/*
mkdir -p bin/
# If its dev mode, only build for ourself
# If it's dev mode, only build for ourself
if [ "${CONSUL_DEV}x" != "x" ]; then
XC_OS=$(go env GOOS)
XC_ARCH=$(go env GOARCH)