Skip to content

Commit

Permalink
Optimize Linux shell installation (kubernetes#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 Mayank Kumar committed Mar 11, 2019
1 parent dd0ab99 commit 0727f52
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 0727f52

Please sign in to comment.