Fixed a typo in curl command invocation

pull/2231/head
Vladimir Pouzanov 2017-11-29 14:35:44 +00:00 committed by dlorenc
parent a83cf990e7
commit a976d49d7d
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ It is built from the minikube source tree, and uses [moby/hyperkit](http://githu
To install the hyperkit driver:
```
curl -Lo https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit && chmod +x docker-machine-driver-hyperkit && sudo mv docker-machine-driver-hyperkit /usr/local/bin/ && sudo chown root:wheel /usr/local/bin/docker-machine-driver-hyperkit && sudo chmod u+s /usr/local/bin/docker-machine-driver-hyperkit
curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit && chmod +x docker-machine-driver-hyperkit && sudo mv docker-machine-driver-hyperkit /usr/local/bin/ && sudo chown root:wheel /usr/local/bin/docker-machine-driver-hyperkit && sudo chmod u+s /usr/local/bin/docker-machine-driver-hyperkit
```
The hyperkit driver currently requires running as root to use the vmnet framework to setup networking.