From: Timo Heister Date: Tue, 11 Jul 2023 20:03:42 +0000 (-0400) Subject: tests/examples/ fix script return value X-Git-Tag: relicensing~697^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15721%2Fhead;p=dealii.git tests/examples/ fix script return value The target update_diffs fails for me without the explicit ``exit 0`` --- diff --git a/tests/examples/update_diffs.sh b/tests/examples/update_diffs.sh index 2f6375dc5f..beda7c364c 100755 --- a/tests/examples/update_diffs.sh +++ b/tests/examples/update_diffs.sh @@ -28,3 +28,5 @@ for file in ${diff_files}; do exit 1 fi done + +exit 0