diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-12-18 22:04:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-12-18 22:04:05 +0100 |
commit | e66777901382a554797a4c70ffbc0c63440cfe57 (patch) | |
tree | c9a9f6eeb103da535dae35c29765c51fb61a403b /.travis.yml | |
parent | c447d8d33f695a83fefe4e47334b41c32874c3c5 (diff) | |
download | vim-git-e66777901382a554797a4c70ffbc0c63440cfe57.tar.gz |
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.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 14957a09e..fee8b49d0 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: |