File: .travis.govet.sh

package info (click to toggle)
gopacket 1.1.19-6.2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 4,692 kB
  • sloc: sh: 293; python: 75; makefile: 4
file content (10 lines) | stat: -rwxr-xr-x 211 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/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