1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-12 14:10:31 +08:00
Files
terasu-cloudflared/vendor/github.com/stretchr/testify/.travis.govet.sh
2018-07-19 15:02:24 -05: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