From 76a0a7dff2969931c1152ef9febce144d844e69a Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Tue, 19 May 2015 11:24:27 -0700 Subject: [PATCH] Shush minor stdout noise on builds --- hack/lib/golang.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh index a219dfead77..96caa0ae52c 100644 --- a/hack/lib/golang.sh +++ b/hack/lib/golang.sh @@ -364,12 +364,12 @@ kube::golang::build_binaries_for_platform() { # Go 1.4 added -o to control where the binary is saved, but Go 1.3 doesn't # have this flag. Whenever we deprecate go 1.3, update to use -o instead of # changing into the output directory. - pushd "$(dirname ${outfile})" + pushd "$(dirname ${outfile})" >/dev/null go test -c \ "${goflags[@]:+${goflags[@]}}" \ -ldflags "${version_ldflags}" \ "$(dirname ${test})" - popd + popd >/dev/null done }