summaryrefslogtreecommitdiff
path: root/.travis/build.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis/build.sh')
-rwxr-xr-x.travis/build.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/.travis/build.sh b/.travis/build.sh
index db7a3d359..ecdd39fd5 100755
--- a/.travis/build.sh
+++ b/.travis/build.sh
@@ -52,12 +52,13 @@ if [ $CC = "clang" ]; then
make CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument"
else
make CFLAGS="$CFLAGS" C=1
- if [ $TESTSUITE ]; then
- if ! make distcheck; then
- # testsuite.log is necessary for debugging.
- cat */_build/tests/testsuite.log
- exit 1
- fi
+fi
+
+if [ $TESTSUITE ]; then
+ if ! make distcheck; then
+ # testsuite.log is necessary for debugging.
+ cat */_build/tests/testsuite.log
+ exit 1
fi
fi