summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-18 22:04:05 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-18 22:04:05 +0100
commite66777901382a554797a4c70ffbc0c63440cfe57 (patch)
treec9a9f6eeb103da535dae35c29765c51fb61a403b /.travis.yml
parentc447d8d33f695a83fefe4e47334b41c32874c3c5 (diff)
patch 8.1.0608: coverals is not updatingv8.1.0608
Problem: Coverals is not updating. Solution: Adjust path in Travis config.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 14957a09ec..fee8b49d07 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -109,7 +109,7 @@ script:
- if [ -n "$err" ]; then exit 1; fi
after_success:
- - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b ${SRCDIR} -x .xs -e ${SRCDIR}/if_perl.c -e ${SRCDIR}/xxd -e ${SRCDIR}/libvterm/src --encodings utf-8 latin-1 EUC-KR; fi
+ - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b ${SRCDIR} -x .xs -e ${SRCDIR}/if_perl.c -e ${SRCDIR}/xxd -e ${SRCDIR}/libvterm --encodings utf-8 latin-1 EUC-KR; fi
- if [ "$COVERAGE" = "yes" ]; then cd ${SRCDIR} && bash <(curl -s https://codecov.io/bash) ; fi
# vim:set sts=2 sw=2 tw=0 et: