mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-14 22:33:34 +00:00
Merge pull request #59881 from cblecker/swagger-openapi-error
Automatic merge from submit-queue (batch tested with PRs 59398, 59881). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Pipe error message from openapi/swaggerspec verify checks to stderr **What this PR does / why we need it**: This pipes the error messages from openapi and swagger spec verify jobs to stderr so they show up in junit reports. **Release note**: ```release-note NONE ```
This commit is contained in:
commit
064338951f
@ -35,7 +35,7 @@ mkdir -p "${_tmp}"
|
||||
cp -a "${SPECROOT}" "${TMP_SPECROOT}"
|
||||
trap "cp -a ${TMP_SPECROOT} ${SPECROOT}/..; rm -rf ${_tmp}" EXIT SIGINT
|
||||
rm ${SPECROOT}/*
|
||||
cp ${TMP_SPECROOT}/BUILD ${SPECROOT}/BUILD
|
||||
cp ${TMP_SPECROOT}/BUILD ${SPECROOT}/BUILD
|
||||
cp ${TMP_SPECROOT}/README.md ${SPECROOT}/README.md
|
||||
|
||||
"${KUBE_ROOT}/hack/update-openapi-spec.sh"
|
||||
@ -46,7 +46,7 @@ if [[ $ret -eq 0 ]]
|
||||
then
|
||||
echo "${SPECROOT} up to date."
|
||||
else
|
||||
echo "${SPECROOT} is out of date. Please run hack/update-openapi-spec.sh"
|
||||
echo "${SPECROOT} is out of date. Please run hack/update-openapi-spec.sh" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -44,7 +44,7 @@ if [[ $ret -eq 0 ]]
|
||||
then
|
||||
echo "${SPECROOT} up to date."
|
||||
else
|
||||
echo "${SPECROOT} is out of date. Please run hack/update-swagger-spec.sh"
|
||||
echo "${SPECROOT} is out of date. Please run hack/update-swagger-spec.sh" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user