summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 5f9a38a..d30de21 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -80,9 +80,11 @@ before_script:
./configure --with-pydebug
make -j4
make -j4 regen-all clinic
- if ! test -z "`git status --porcelain`"
+ changes=`git status --porcelain`
+ if ! test -z "$changes"
then
echo "Generated files not up to date"
+ echo "$changes"
exit 1
fi