hack/generate-bindata.sh: make output cleanly by suppressing pushd/popd output.

pull/6/head
Slava Semushin 2018-01-12 16:29:29 +01:00
parent 4cc5d3b968
commit 296ae178d9
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ if ! which go-bindata &>/dev/null ; then
fi fi
# run the generation from the root directory for stable output # run the generation from the root directory for stable output
pushd "${KUBE_ROOT}" pushd "${KUBE_ROOT}" >/dev/null
# These are files for e2e tests. # These are files for e2e tests.
BINDATA_OUTPUT="test/e2e/generated/bindata.go" BINDATA_OUTPUT="test/e2e/generated/bindata.go"
@ -84,4 +84,4 @@ fi
rm -f "${BINDATA_OUTPUT}.tmp" rm -f "${BINDATA_OUTPUT}.tmp"
popd popd >/dev/null