From 20f3128d0f1854ed7e548d2dd5c36b89dcb600e4 Mon Sep 17 00:00:00 2001 From: William Zhang Date: Thu, 15 Aug 2019 18:54:13 +0800 Subject: [PATCH] [k3s] Should download charts first when building from source Signed-off-by: William Zhang --- content/k3s/latest/en/building/_index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/k3s/latest/en/building/_index.md b/content/k3s/latest/en/building/_index.md index da075e15a46..e6afe642911 100644 --- a/content/k3s/latest/en/building/_index.md +++ b/content/k3s/latest/en/building/_index.md @@ -13,10 +13,11 @@ The clone will be much faster on this repo if you do This repo includes all of Kubernetes history so `--depth 1` will avoid most of that. -To build the full release binary run `make` and that will create `./dist/artifacts/k3s`. +To build the full release binary run `make` and that will create `./dist/artifacts/k3s`. + Optionally to build the binaries without running linting or building docker images: ```sh -./scripts/build && ./scripts/package-cli +./scripts/download && ./scripts/build && ./scripts/package-cli ``` For development, you just need go 1.12 and a sane GOPATH. To compile the binaries run: