Merge pull request #191 from docker/vet

Remove govet
This commit is contained in:
Michael Crosby 2016-04-07 10:44:19 -07:00
commit 1bb6821084
2 changed files with 0 additions and 7 deletions

View file

@ -20,10 +20,6 @@ ENV GOPATH /go:/go/src/github.com/docker/containerd/vendor
WORKDIR /go/src/github.com/docker/containerd
# install golint/vet
RUN go get github.com/golang/lint/golint \
&& go get golang.org/x/tools/cmd/vet
# install seccomp: the version shipped in trusty is too old
ENV SECCOMP_VERSION 2.3.0
RUN set -x \

View file

@ -91,6 +91,3 @@ ifneq ($(wildcard /.dockerenv), )
endif
validate: fmt
vet:
go vet $(shell go list ./... | grep -v vendor)