diff --git a/Makefile b/Makefile index 3942d31a1c..9b46db0136 100755 --- a/Makefile +++ b/Makefile @@ -262,9 +262,9 @@ endif .PHONY: install-hyperkit-driver install-hyperkit-driver: out/docker-machine-driver-hyperkit - sudo cp out/docker-machine-driver-hyperkit $(HOME)/bin/docker-machine-driver-hyperkit - sudo chown root:wheel $(HOME)/bin/docker-machine-driver-hyperkit - sudo chmod u+s $(HOME)/bin/docker-machine-driver-hyperkit + sudo cp out/docker-machine-driver-hyperkit $(GOBIN)/docker-machine-driver-hyperkit + sudo chown root:wheel $(GOBIN)/docker-machine-driver-hyperkit + sudo chmod u+s $(GOBIN)/docker-machine-driver-hyperkit .PHONY: check-release check-release: diff --git a/pkg/minikube/constants/constants_darwin.go b/pkg/minikube/constants/constants_darwin.go index e0fb66426e..a6effc509f 100644 --- a/pkg/minikube/constants/constants_darwin.go +++ b/pkg/minikube/constants/constants_darwin.go @@ -22,6 +22,7 @@ var SupportedVMDrivers = [...]string{ "virtualbox", "xhyve", "vmwarefusion", + "hyperkit", } var DefaultMountDir = "/Users"