peridot/hack/gofmt_check.sh
2022-10-30 06:03:06 +01:00

16 lines
350 B
Bash
Executable File

#!/usr/bin/env bash
set -o errexit
bazel build --config=ci @go_sdk//...
GO_BIN="$(bazel info output_base)/external/go_sdk/bin/go"
if [[ -n $($GO_BIN fmt -n $(go list ./... | grep -v /vendor/) | sed 's/ -w//') ]]; then
echo "Go files must be formatted with gofmt. Please run:"
echo " go fmt $(go list ./... | grep -v /vendor/)"
exit 1
fi