From fdae6748d2f02c303dcbad26eec3df266a22fc7d Mon Sep 17 00:00:00 2001 From: Paul Morie Date: Tue, 31 Mar 2015 17:36:47 -0400 Subject: [PATCH] Fix typo in std install instructions for build --- hack/lib/golang.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh index c9cf4198b60..3683ef28c59 100644 --- a/hack/lib/golang.sh +++ b/hack/lib/golang.sh @@ -258,7 +258,7 @@ kube::golang::exit_if_stdlib_not_installed() { kube::log::status "+++ Error. stdlib pkg with cgo flag not found."; kube::log::status "+++ Error. stdlib pkg cannot be rebuilt since ${go_root_dir}/pkg is not writable by `whoami`"; kube::log::status "+++ Error. Make ${go_root_dir}/pkg writable for `whoami` for a one-time stdlib install, Or" - kube::log::status "+++ Error. Rebuild stdlib using the command 'CGO_ENABLED=0 go install -a installsuffix cgo std'"; + kube::log::status "+++ Error. Rebuild stdlib using the command 'CGO_ENABLED=0 go install -a -installsuffix cgo std'"; exit 0; }