Skip to content

Commit

Permalink
Optimize Linux shell installation (#12358)
Browse files Browse the repository at this point in the history
Use `mv` instead the combination of `cp` and `rm` to put minikube into `/usr/local/bin`
  • Loading branch information
Florian Breisch authored and k8s-ci-robot committed Feb 13, 2019
1 parent bfafd2a commit 832a05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/tasks/tools/install-minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 832a05e

Please sign in to comment.