try to understand the CI failures

This commit is contained in:
Jean-Paul Calderone 2020-08-07 13:39:51 -04:00
parent 80136da0a6
commit d6a80c891a
No known key found for this signature in database
GPG Key ID: 86E6F8BAE797C287

View File

@ -32,6 +32,11 @@ set -e
if [ $TERM = 'dumb' ]; then
export TERM=ansi
fi
git diff "$tracking_filename"
exit $code
echo "The ${tracking_filename} diff is:"
echo "================================="
git diff "${tracking_filename}"
echo "================================="
echo "Exiting with code ${code} from ratchet.py."
exit ${code}