Skip to content

Commit

Permalink
Merge pull request #3911 from morvencao/br_fix_drive_installation_doc
Browse files Browse the repository at this point in the history
fix 'gopath' issue for driver installation.
  • Loading branch information
k8s-ci-robot authored Mar 20, 2019
2 parents b906adc + bf79466 commit 5313c19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ NOTE: Ubuntu users on a release older than 18.04, or anyone experiencing [#3206:

```shell
sudo apt install libvirt-dev
test -d $HOME/go/src/k8s.io/minikube || \
git clone https://github.com/kubernetes/minikube.git $HOME/go/src/k8s.io/minikube
cd $HOME/go/src/k8s.io/minikube
test -d $GOPATH/src/k8s.io/minikube || \
git clone https://github.com/kubernetes/minikube.git $GOPATH/src/k8s.io/minikube
cd $GOPATH/src/k8s.io/minikube
git pull
make out/docker-machine-driver-kvm2
sudo install out/docker-machine-driver-kvm2 /usr/local/bin
Expand Down

0 comments on commit 5313c19

Please sign in to comment.