Commit 76a0a7df authored by Tim Hockin's avatar Tim Hockin

Shush minor stdout noise on builds

parent 441f69f3
...@@ -364,12 +364,12 @@ kube::golang::build_binaries_for_platform() { ...@@ -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 # 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 # have this flag. Whenever we deprecate go 1.3, update to use -o instead of
# changing into the output directory. # changing into the output directory.
pushd "$(dirname ${outfile})" pushd "$(dirname ${outfile})" >/dev/null
go test -c \ go test -c \
"${goflags[@]:+${goflags[@]}}" \ "${goflags[@]:+${goflags[@]}}" \
-ldflags "${version_ldflags}" \ -ldflags "${version_ldflags}" \
"$(dirname ${test})" "$(dirname ${test})"
popd popd >/dev/null
done done
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment