influxdb/.hooks/pre-commit

15 lines
484 B
Plaintext
Raw Normal View History

2014-06-23 16:53:50 +00:00
#!/usr/bin/env bash
fmtcount=`git ls-files | grep '.go$' | xargs gofmt -l 2>&1 | wc -l`
if [ $fmtcount -gt 0 ]; then
echo "Some files aren't formatted, please run 'go fmt ./...' to format your source code before committing"
exit 1
fi
vetcount=`go vet ./... 2>&1 | wc -l`
if [ $vetcount -gt 0 ]; then
2015-01-14 01:03:40 +00:00
echo "Some files aren't passing vet heuristics, please run 'go vet ./...' to see the errors it flags and correct your source code before committing"
2014-06-23 16:53:50 +00:00
exit 1
fi
exit 0