blob: 80bafdb3a269a86c75c6067a17afc1378f040421 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env bash
# Check gofmt
echo "==> Checking that code complies with gofmt requirements..."
# This filter should match the search filter in ../GNUMakefile
gofmt_files=$(find . -name '*.go' | grep -v vendor | xargs gofmt -l)
if [ -n "${gofmt_files}" ]; then
echo 'gofmt needs running on the following files:'
echo "${gofmt_files}"
echo "You can use the command: \`make fmt\` to reformat code."
exit 1
fi
exit 0
|