mirror of https://github.com/gin-gonic/gin.git
fix(Makefile): golint to new URL (#1592)
as title. Just update the golint to new URL.
This commit is contained in:
parent
6ab50f944c
commit
268e30710b
2
Makefile
2
Makefile
|
@ -43,7 +43,7 @@ embedmd:
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
lint:
|
lint:
|
||||||
@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
||||||
go get -u github.com/golang/lint/golint; \
|
go get -u golang.org/x/lint/golint; \
|
||||||
fi
|
fi
|
||||||
for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;
|
for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue