go: reenable vet

This commit is contained in:
Chris Sexton 2020-10-09 10:58:52 -04:00
parent 17b5f11fb6
commit f15b0cd40b
1 changed files with 1 additions and 2 deletions

3
gok.sh
View File

@ -15,8 +15,7 @@ gofmt -l $(find . -name '*.go') > $o 2>&1
test $(wc -l $o | awk '{ print $1 }') = "0" || fail
echo govet
#go vet ./... > $o 2>&1
echo disabled
go vet ./... > $o 2>&1
echo go test
go test -test.timeout=60s ./... > $o 2>&1 || fail