2017-05-19 12:34:17 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-03-15 16:00:52 +00:00
|
|
|
# Copyright (c) HashiCorp, Inc.
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2017-05-19 12:34:17 +00:00
|
|
|
|
|
|
|
echo "==> Checking that code complies with gofmt requirements..."
|
|
|
|
|
|
|
|
gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`)
|
|
|
|
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
|