Add tools package, tidy go mods

This commit is contained in:
Michael Cristina
2020-05-22 13:23:20 -05:00
parent 80dc4763bf
commit 823847d90a
5 changed files with 35 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ set -x
set -e
# verify all modules pass validation
for i in $(find . -name go.mod -not -path "./hack/*"); do
for i in $(find . -name go.mod); do
pushd .
cd $(dirname $i);
go list -m -json all > /dev/null