1
0
mirror of https://github.com/go-task/task.git synced 2025-01-16 04:54:28 +02:00
task/vendor/github.com/stretchr/testify/.travis.govet.sh
2018-01-03 15:12:40 -02:00

11 lines
138 B
Bash
Executable File

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