Skip to content

Commit

Permalink
Remove go version check for make fmt (#2558) (#2561)
Browse files Browse the repository at this point in the history
  • Loading branch information
lafriks authored and lunny committed Sep 20, 2017
1 parent 91788e0 commit d14a724
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,8 @@ clean:
$(GO) clean -i ./...
rm -rf $(EXECUTABLE) $(DIST) $(BINDATA) integrations*.test

required-gofmt-version:
@$(GO) version | grep -q '\(1.7\|1.8\)' || { echo "We require go version 1.7 or 1.8 to format code" >&2 && exit 1; }

.PHONY: fmt
fmt: required-gofmt-version
fmt:
$(GOFMT) -w $(GOFILES)

.PHONY: vet
Expand Down Expand Up @@ -112,7 +109,7 @@ misspell:
misspell -w -i unknwon $(GOFILES)

.PHONY: fmt-check
fmt-check: required-gofmt-version
fmt-check:
# get all go files and run go fmt on them
@diff=$$($(GOFMT) -d $(GOFILES)); \
if [ -n "$$diff" ]; then \
Expand Down

0 comments on commit d14a724

Please sign in to comment.