From 44638e1b0a9f061754ba250276d93498f25fe0f3 Mon Sep 17 00:00:00 2001 From: Ivan Font Date: Thu, 24 May 2018 10:28:54 -0700 Subject: [PATCH] Update contributing guide --- CONTRIBUTING.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a3c267a79ea..7f2daf053f4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -18,12 +18,9 @@ Please see https://git.k8s.io/community/CLA.md for more info Setup: - Download [google container builder](https://cloud.google.com/container-builder/docs/build-debug-locally) -- Export `GOOS` (darwin/linux) and `GOARCH` (amd64) vars to match the system to build - Export `OUTPUT` to a location to write the directory containing the final build artifacts ```sh -export GOOS=darwin -export GOARCH=amd64 export OUTPUT=/tmp/kubebuilder ``` @@ -31,7 +28,7 @@ Run container-builder: ```sh container-builder-local --config=build/cloudbuild_local.yaml --dryrun=false \ - --substitutions=_GOOS=$GOOS,_GOARCH=$GOARCH --write-workspace=$OUTPUT . + --write-workspace=$OUTPUT . ``` Extract `tar.gz` from $OUTPUT to /usr/local