Merge pull request #5962 from hashicorp/f-fmtcheck

Improve performance of fmtcheck
This commit is contained in:
Paul Hinze 2016-03-31 16:12:14 -05:00
commit 87a1a5b3f7
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# Check gofmt
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
echo 'gofmt needs running on the following files:'
echo "${gofmt_files}"