terraform-provider-docker/scripts/gofmtcheck.sh

14 lines
370 B
Bash
Raw Normal View History

2017-06-05 16:59:08 -04:00
#!/usr/bin/env bash
# Check gofmt
echo "==> Checking that code complies with gofmt requirements..."
2020-12-02 07:04:53 -05:00
gofmt_files=$(gofmt -s -l `find . -name '*.go' | grep -v vendor`)
2017-06-05 16:59:08 -04: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