remove useless condition that shows logs

This commit is contained in:
andy5995
2019-07-25 14:11:31 -05:00
parent b140c473d1
commit 897b49f475

View File

@@ -94,12 +94,6 @@ script:
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew install doxygen;
fi;
make check;
result=$?;
if [ $result != 0 ]; then
cat tests/*.log;
exit $result;
fi;
make distcheck;
if type cppcheck &> /dev/null ; then cppcheck --error-exitcode=1 --quiet *.h *.c tests/ ; fi;
fi