Makefile: remove PKG_LIST variable
The `$PKG_LIST` variable was only used for running `go test`, and can be replaced with `./...`.
This commit is contained in:
parent
bcbe35a7c7
commit
c7987a8500
3
Makefile
3
Makefile
@ -5,7 +5,6 @@ VERSION := $(shell git describe --tags --dirty --always)
|
|||||||
# (because they're only committed after locally working, which means the
|
# (because they're only committed after locally working, which means the
|
||||||
# implementation has already been written).
|
# implementation has already been written).
|
||||||
OAPI_VERSION := $(shell git describe --tags --always)
|
OAPI_VERSION := $(shell git describe --tags --always)
|
||||||
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
|
|
||||||
|
|
||||||
LDFLAGS := -X ${PKG}/internal/appinfo.ApplicationVersion=${VERSION}
|
LDFLAGS := -X ${PKG}/internal/appinfo.ApplicationVersion=${VERSION}
|
||||||
BUILD_FLAGS = -ldflags="${LDFLAGS}"
|
BUILD_FLAGS = -ldflags="${LDFLAGS}"
|
||||||
@ -172,7 +171,7 @@ swagger-ui:
|
|||||||
test:
|
test:
|
||||||
# Ensure the web-static directory exists, so that `web/web_app.go` can embed something.
|
# Ensure the web-static directory exists, so that `web/web_app.go` can embed something.
|
||||||
mkdir -p ${WEB_STATIC}
|
mkdir -p ${WEB_STATIC}
|
||||||
go test -short ${PKG_LIST}
|
go test -short ./...
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@go clean -i -x
|
@go clean -i -x
|
||||||
|
Loading…
x
Reference in New Issue
Block a user