mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +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
|