Make it easier to debug swgger-gen flakes

Sometimes this check fails, but git status doesn't give us enough information
to debug the failure.

Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Upstream-commit: d80f25d079b84d8aa1e3233464c415e3b5d4480a
Component: engine
This commit is contained in:
Daniel Nephin
2018-02-02 11:07:40 -08:00
parent b9a24cabc1
commit 1ccbec4ecc

View File

@ -10,7 +10,7 @@ unset IFS
if [ ${#files[@]} -gt 0 ]; then
${SCRIPTDIR}/../generate-swagger-api.sh 2> /dev/null
# Let see if the working directory is clean
diffs="$(git status --porcelain -- api/types/ 2>/dev/null)"
diffs="$(git diff -- api/types/)"
if [ "$diffs" ]; then
{
echo 'The result of hack/generate-swagger-api.sh differs'