model/vendor/github.com/google/gopacket/.travis.gofmt.sh

8 lines
165 B
Bash
Raw Normal View History

2018-08-12 10:46:46 +00:00
#!/bin/bash
cd "$(dirname $0)"
if [ -n "$(go fmt ./...)" ]; then
echo "Go code is not formatted, run 'go fmt github.com/google/stenographer/...'" >&2
exit 1
fi