Merge pull request #5962 from hashicorp/f-fmtcheck
Improve performance of fmtcheck
This commit is contained in:
commit
87a1a5b3f7
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Check gofmt
|
# Check gofmt
|
||||||
echo "==> Checking that code complies with gofmt requirements..."
|
echo "==> Checking that code complies with gofmt requirements..."
|
||||||
gofmt_files=$(gofmt -l . | grep -v vendor)
|
gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`)
|
||||||
if [[ -n ${gofmt_files} ]]; then
|
if [[ -n ${gofmt_files} ]]; then
|
||||||
echo 'gofmt needs running on the following files:'
|
echo 'gofmt needs running on the following files:'
|
||||||
echo "${gofmt_files}"
|
echo "${gofmt_files}"
|
||||||
|
|
Loading…
Reference in New Issue