aboutsummaryrefslogtreecommitdiff
path: root/scripts/travis.sh
diff options
context:
space:
mode:
authorNicolas Hillegeer <nicolas@hillegeer.com>2014-05-31 16:48:51 +0200
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-05-31 16:48:51 +0200
commit9d60365e993181213a66f15df4166cbba165ac2e (patch)
tree0b144cbe1c22794de02a9955104e51380e32bb10 /scripts/travis.sh
parent272902e1fc335ab108b9558dbb351978b395014a (diff)
downloadrneovim-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-xscripts/travis.sh2
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..."