acme-dns/vendor/github.com/stretchr/testify/.travis.gofmt.sh

8 lines
105 B
Bash
Raw Normal View History

2018-01-22 16:19:33 +07:00
#!/bin/bash
if [ -n "$(gofmt -l .)" ]; then
echo "Go code is not formatted:"
gofmt -d .
exit 1
fi