2016-11-01 16:48:10 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Check gofmt
|
|
|
|
echo "==> Checking that code complies with gofmt requirements..."
|
|
|
|
gofmt_files=$(gofmt -s -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
|
2016-11-01 17:00:41 -04:00
|
|
|
echo "Check passed."
|
2016-11-01 16:48:10 -04:00
|
|
|
|
|
|
|
exit 0
|