mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-12 14:10:31 +08:00
11 lines
138 B
Bash
Executable File
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
|