Optimize Linux shell installation (#12358)

Use `mv` instead the combination of `cp` and `rm` to put minikube into `/usr/local/bin`
This commit is contained in:
Florian Breisch
2019-02-13 09:47:03 +01:00
committed by Kubernetes Prow Robot
parent bfafd2a064
commit 832a05e006
@@ -59,7 +59,7 @@ curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/miniku
Here's an easy way to add the Minikube executable to your path:
```shell
sudo cp minikube /usr/local/bin && rm minikube
sudo mv minikube /usr/local/bin
```
### Linux