Skip to content

Commit

Permalink
CI: fix check_indentation.sh script
Browse files Browse the repository at this point in the history
Due to the addition of check_doxygen.sh we were not checking the return
value of git diff. This means the travis check would pass even though
there was a diff.
  • Loading branch information
tjhei committed Mar 4, 2020
1 parent 3579e25 commit 9f19609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/utilities/check_indentation.sh
Expand Up @@ -36,6 +36,6 @@ fi

./contrib/utilities/indent-all || exit $?
git diff
git diff-files --quiet
git diff-files --quiet || exit $?

./contrib/utilities/check_doxygen.sh || exit $?

0 comments on commit 9f19609

Please sign in to comment.