From 757feee04fbd38dc6368c21d7fbbb7db80fc6989 Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Wed, 7 Feb 2018 21:45:02 -0800 Subject: [PATCH] Route verify-godep-licenses output to stderr --- hack/verify-godep-licenses.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/verify-godep-licenses.sh b/hack/verify-godep-licenses.sh index 924ec48578e..a4eda566dba 100755 --- a/hack/verify-godep-licenses.sh +++ b/hack/verify-godep-licenses.sh @@ -49,7 +49,7 @@ LICENSE_ROOT="${_tmpdir}" "${KUBE_ROOT}/hack/update-godep-licenses.sh" # Compare Godep Licenses if ! _out="$(diff -Naupr ${KUBE_ROOT}/Godeps/LICENSES ${_tmpdir}/Godeps/LICENSES)"; then - echo "Your godep licenses file is out of date. Run hack/update-godep-licenses.sh and commit the results." - echo "${_out}" + echo "Your godep licenses file is out of date. Run hack/update-godep-licenses.sh and commit the results." >&2 + echo "${_out}" >&2 exit 1 fi