Skip to content

Commit

Permalink
Merge pull request kubernetes#8511 from thockin/make-stdout-noise
Browse files Browse the repository at this point in the history
Shush minor stdout noise on builds
  • Loading branch information
ixdy committed May 19, 2015
2 parents 1f4172d + 76a0a7d commit a0a8a82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/lib/golang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit a0a8a82

Please sign in to comment.