diff options
-rw-r--r-- | .builds/alpine-edge.yml | 3 | ||||
-rw-r--r-- | Makefile | 9 |
2 files changed, 3 insertions, 9 deletions
diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml index 92322b44..3893b986 100644 --- a/.builds/alpine-edge.yml +++ b/.builds/alpine-edge.yml @@ -11,9 +11,6 @@ environment: DESTDIR: ./out GOFLAGS: "-tags=notmuch" tasks: - - checkfmt: | - cd aerc - make checkfmt - lint: | cd aerc make lint @@ -56,16 +56,13 @@ dev: fmt: gofmt -w . -.PHONY: checkfmt -checkfmt: - @if [ `gofmt -l . | wc -l` -ne 0 ]; then \ +.PHONY: lint +lint: + @echo "gofmt -d ."; if [ `gofmt -l . | wc -l` -ne 0 ]; then \ gofmt -d .; \ echo "ERROR: source files need reformatting with gofmt"; \ exit 1; \ fi - -.PHONY: lint -lint: $(GO) vet ./... .PHONY: tests |