opentofu/scripts/gofmtcheck.sh
James Bardin a3fb07d008 add staticcheck make target
cleanup the old fmtcheck script while we're in here
2021-09-01 11:36:21 -04:00

14 lines
332 B
Bash
Executable File

#!/usr/bin/env bash
# Check go fmt
echo "==> Checking that code complies with go fmt requirements..."
gofmt_files=$(go fmt ./...)
if [[ -n ${gofmt_files} ]]; then
echo 'gofmt needs running on the following files:'
echo "${gofmt_files}"
echo "You can use the command: \`go fmt\` to reformat code."
exit 1
fi
exit 0