diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-05-31 16:48:51 +0200 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-05-31 16:48:51 +0200 |
commit | 9d60365e993181213a66f15df4166cbba165ac2e (patch) | |
tree | 0b144cbe1c22794de02a9955104e51380e32bb10 /scripts/travis.sh | |
parent | 272902e1fc335ab108b9558dbb351978b395014a (diff) | |
download | rneovim-9d60365e993181213a66f15df4166cbba165ac2e.tar.gz rneovim-9d60365e993181213a66f15df4166cbba165ac2e.tar.bz2 rneovim-9d60365e993181213a66f15df4166cbba165ac2e.zip |
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.
Diffstat (limited to 'scripts/travis.sh')
-rwxr-xr-x | scripts/travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh index 4b908ac2f4..50080141ce 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -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..." |