From 9f19609502218af844cbf10b6f30588a63589201 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Wed, 4 Mar 2020 08:16:24 -0500 Subject: [PATCH] CI: fix check_indentation.sh script 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. --- contrib/utilities/check_indentation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/utilities/check_indentation.sh b/contrib/utilities/check_indentation.sh index 6ea739e9d1..fb5fa97f11 100755 --- a/contrib/utilities/check_indentation.sh +++ b/contrib/utilities/check_indentation.sh @@ -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 $? -- 2.39.5