make: Pull all generate dependencies before generating
This commit is contained in:
parent
6749287aa3
commit
5691c8b337
10
Makefile
10
Makefile
|
@ -72,13 +72,11 @@ cover:
|
|||
# generate runs `go generate` to build the dynamically generated
|
||||
# source files, except the protobuf stubs which are built instead with
|
||||
# "make protobuf".
|
||||
generate:
|
||||
@which stringer > /dev/null; if [ $$? -ne 0 ]; then \
|
||||
GO111MODULE=off go get -u golang.org/x/tools/cmd/stringer; \
|
||||
fi
|
||||
generate: tools
|
||||
# We turn off modules for "go generate" because our downstream generate
|
||||
# commands are not all ready to deal with Go modules yet, and this
|
||||
# avoids downloading all of the deps that are in the vendor dir anyway.
|
||||
# commands are not all ready to deal with Go modules yet.
|
||||
# See https://github.com/golang/go/issues/24661
|
||||
# This also avoids downloading all of the deps that are in the vendor dir anyway.
|
||||
GO111MODULE=off go generate ./...
|
||||
GO111MODULE=off go fmt command/internal_plugin_list.go > /dev/null
|
||||
|
||||
|
|
Loading…
Reference in New Issue