mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-15 06:43:54 +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
@ -46,7 +46,7 @@ if [[ $ret -eq 0 ]]
|
|||||||
then
|
then
|
||||||
echo "${SPECROOT} up to date."
|
echo "${SPECROOT} up to date."
|
||||||
else
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ if [[ $ret -eq 0 ]]
|
|||||||
then
|
then
|
||||||
echo "${SPECROOT} up to date."
|
echo "${SPECROOT} up to date."
|
||||||
else
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user