mirror of
https://github.com/joohoi/acme-dns.git
synced 2025-02-22 04:28:43 +07: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
|