From 6585cf0147442c580326e701467fa03f2e1db3b1 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Tue, 16 Jun 2015 09:44:57 -0700 Subject: [PATCH] Use validate-vet script from docker It tests only changed files from commit. We can't expect vet fixes from all projects from vendor directory. Signed-off-by: Alexander Morozov --- hack/validate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/validate.sh b/hack/validate.sh index 4e0ccce7..3c170545 100755 --- a/hack/validate.sh +++ b/hack/validate.sh @@ -9,7 +9,7 @@ validate() { bash /go/src/github.com/docker/docker/hack/make/validate-dco bash /go/src/github.com/docker/docker/hack/make/validate-gofmt go get golang.org/x/tools/cmd/vet - go vet github.com/docker/libcontainer/... + bash /go/src/github.com/docker/docker/hack/make/validate-vet } # run validations