Skip to content

Commit

Permalink
Route verify-godep-licenses output to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
cblecker committed Feb 8, 2018
1 parent a34b1cf commit 757feee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/verify-godep-licenses.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 757feee

Please sign in to comment.