mirror of https://github.com/kubernetes/kops.git
Merge pull request #3400 from justinsb/makefile_use_hack_packages
Automatic merge from submit-queue. . Makefile: use hack/.packages instead of go list
This commit is contained in:
commit
a4171cd5aa
2
Makefile
2
Makefile
|
|
@ -33,7 +33,7 @@ NODEUP=$(LOCAL)/nodeup
|
|||
UPLOAD=$(BUILD)/upload
|
||||
UID:=$(shell id -u)
|
||||
GID:=$(shell id -g)
|
||||
TESTABLE_PACKAGES:=$(shell go list ./... | egrep -v "k8s.io/kops/cloudmock|k8s.io/kops/vendor")
|
||||
TESTABLE_PACKAGES:=$(cat hack/.packages | egrep -v "k8s.io/kops/cloudmock|k8s.io/kops/vendor")
|
||||
|
||||
# See http://stackoverflow.com/questions/18136918/how-to-get-current-relative-directory-of-your-makefile
|
||||
MAKEDIR:=$(strip $(shell dirname "$(realpath $(lastword $(MAKEFILE_LIST)))"))
|
||||
|
|
|
|||
Loading…
Reference in New Issue