Updated Makefile
the build failed Details

This commit is contained in:
konrad 2017-11-07 16:34:30 +01:00 committed by kolaente
parent 1d711831d4
commit 110361361b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ required-gofmt-version:
.PHONY: lint
lint:
@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
$(GO) get -u github.com/golang/lint/golint; \
go get -u github.com/golang/lint/golint; \
fi
for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;