2015-12-17 18:21:43 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Check gofmt
|
|
|
|
echo "==> Checking that code complies with gofmt requirements..."
|
2016-01-29 20:53:56 +01:00
|
|
|
gofmt_files=$(gofmt -l . | grep -v vendor)
|
2015-12-17 18:21:43 +01:00
|
|
|
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
|