mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-23 08:56:34 +00:00
11 lines
211 B
Bash
11 lines
211 B
Bash
#!/bin/bash
|
|
|
|
cd "$(dirname $0)"
|
|
DIRS=". layers pcap pcapgo tcpassembly tcpassembly/tcpreader routing ip4defrag bytediff macs defrag/lcmdefrag"
|
|
set -e
|
|
for subdir in $DIRS; do
|
|
pushd $subdir
|
|
go vet
|
|
popd
|
|
done
|