Merge pull request #218 from dlorenc/makefile
Fix Makefile bug for systems without Python.pull/224/head
commit
fec1852fab
2
Makefile
2
Makefile
|
@ -32,7 +32,7 @@ endif
|
|||
|
||||
|
||||
# Use system python if it exists, otherwise use Docker.
|
||||
PYTHON := $(shell command -v python || docker run --rm -it -v $(shell pwd):/minikube -w /minikube python python)
|
||||
PYTHON := $(shell command -v python || echo "docker run --rm -it -v $(shell pwd):/minikube -w /minikube python python")
|
||||
BUILD_OS := $(shell uname -s)
|
||||
|
||||
# Set the version information for the Kubernetes servers, and build localkube statically
|
||||
|
|
Loading…
Reference in New Issue