Merge pull request #729 from mrunalp/fix_build

Fix the build by removing go get for vet
This commit is contained in:
Michael Crosby 2016-04-07 10:29:49 -07:00
commit 865f4a685d
1 changed files with 2 additions and 5 deletions

View File

@ -20,10 +20,7 @@ endif
static:
CGO_ENABLED=1 go build -tags "$(BUILDTAGS) cgo static_build" -ldflags "-w -extldflags -static -X main.gitCommit=${COMMIT}" -o runc .
vet:
go get golang.org/x/tools/cmd/vet
lint: vet
lint:
go vet ./...
go fmt ./...
@ -53,7 +50,7 @@ clean:
rm -f runc
rm -f $(RUNC_LINK)
validate: vet
validate:
script/validate-gofmt
go vet ./...