travis/coverity: hotfix, alwasy return success

It seems the coverity script likes to return 1 (error) when the current
branch does not follow its pattern. Temporarily disable that.
This commit is contained in:
Nicolas Hillegeer
2014-05-31 16:48:51 +02:00
parent 272902e1fc
commit 9d60365e99

View File

@@ -85,7 +85,7 @@ if [ "$TRAVIS_BUILD_TYPE" = "coverity" ]; then
COVERITY_SCAN_BUILD_COMMAND_PREPEND="$MAKE_CMD deps" \
COVERITY_SCAN_BUILD_COMMAND="$MAKE_CMD nvim" \
bash
exit $?
exit 0
elif [ "$TRAVIS_BUILD_TYPE" = "clang/asan" ]; then
if [ ! -d /usr/local/clang-3.4 ]; then
echo "Downloading clang 3.4..."