From a1071288ae25203d2d39da84d9bd84353c84992d Mon Sep 17 00:00:00 2001 From: Joe Beda Date: Thu, 18 Sep 2014 09:06:50 -0700 Subject: [PATCH] Fix up source install instructions for VSphere I skip using `go get` as it downloads all of the dependencies. But since we are vendoring using godep without rewriting imports, this means we download a bunch of stuff we don't use. Instead, just clone the repo directly. Fixes #1360. --- docs/getting-started-guides/vsphere.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/getting-started-guides/vsphere.md b/docs/getting-started-guides/vsphere.md index 8d93041c584..811b678da98 100644 --- a/docs/getting-started-guides/vsphere.md +++ b/docs/getting-started-guides/vsphere.md @@ -23,8 +23,9 @@ 6. Get the Kubernetes source: ```sh - go get github.com/GoogleCloudPlatform/kubernetes - cd $GOPATH/src/github.com/GoogleCloudPlatform/kubernetes + mkdir -p $GOPATH/src/github.com/GoogleCloudPlatform + git clone https://github.com/GoogleCloudPlatform/kubernetes.git + cd kubernetes ``` ### Setup