Update the README

Remove referenced to developing on the host, we shouldn't support it.

Move script/validate to scripts/validate to be consistent.
Set the default target to be binary instead of clean.

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin
2017-05-14 13:24:10 -04:00
parent a408fb0a61
commit 60b2dd3e23
10 changed files with 32 additions and 42 deletions

View File

@ -13,7 +13,8 @@ export GOOS=windows
export GOARCH=amd64
# Override TARGET
export TARGET="build/docker-$GOOS-$GOARCH"
TARGET="build/docker-$GOOS-$GOARCH"
echo "Building $TARGET"
# TODO: -tags pkcs11
go build -o "${TARGET}" --ldflags "${LDFLAGS}" "${SOURCE}"