From d6a80c891a8ec9796760dcf213eb8249f76dfb5d Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Fri, 7 Aug 2020 13:39:51 -0400 Subject: [PATCH] try to understand the CI failures --- misc/python3/ratchet.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/misc/python3/ratchet.sh b/misc/python3/ratchet.sh index a6a2c53c3..ec67ea0a0 100755 --- a/misc/python3/ratchet.sh +++ b/misc/python3/ratchet.sh @@ -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}