ergo/.travis.gofmt.sh

11 lines
207 B
Bash
Raw Normal View History

2018-04-23 02:36:50 +02:00
#!/bin/bash
# exclude vendor/
SOURCES="./oragono.go ./irc"
if [ -n "$(gofmt -s -l $SOURCES)" ]; then
echo "Go code is not formatted correctly with \`gofmt -s\`:"
gofmt -s -d $SOURCES
exit 1
fi