Simplify go vet command and use standard method for veting all packages

pull/839/head^2
Leigh McCulloch 2019-12-07 13:36:16 -08:00 committed by George Lesica
parent 3b0d317f67
commit f2b3a9bb9b
1 changed files with 2 additions and 7 deletions

View File

@ -1,10 +1,5 @@
#!/bin/bash
cd "$(dirname $0)"
DIRS=". assert require mock _codegen"
set -e
for subdir in $DIRS; do
pushd $subdir
go vet
popd
done
go vet ./...