From 296ae178d91de909d89005b8d495203f8bf97abd Mon Sep 17 00:00:00 2001 From: Slava Semushin Date: Fri, 12 Jan 2018 16:29:29 +0100 Subject: [PATCH] hack/generate-bindata.sh: make output cleanly by suppressing pushd/popd output. --- hack/generate-bindata.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/generate-bindata.sh b/hack/generate-bindata.sh index 4c843c5cdc..40605fb419 100755 --- a/hack/generate-bindata.sh +++ b/hack/generate-bindata.sh @@ -39,7 +39,7 @@ if ! which go-bindata &>/dev/null ; then fi # run the generation from the root directory for stable output -pushd "${KUBE_ROOT}" +pushd "${KUBE_ROOT}" >/dev/null # These are files for e2e tests. BINDATA_OUTPUT="test/e2e/generated/bindata.go" @@ -84,4 +84,4 @@ fi rm -f "${BINDATA_OUTPUT}.tmp" -popd +popd >/dev/null