diff options
author | Florian Walch <florian@fwalch.com> | 2016-07-17 12:42:43 +0200 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2016-07-17 12:42:43 +0200 |
commit | 0aa687a15d745b80c93f67792811b0bab2358134 (patch) | |
tree | 20818c093a3463614a954f3806da513673f9a854 | |
parent | a5358688bc91b2d72bf4eddea7938003d1fcde93 (diff) | |
download | rneovim-0aa687a15d745b80c93f67792811b0bab2358134.tar.gz rneovim-0aa687a15d745b80c93f67792811b0bab2358134.tar.bz2 rneovim-0aa687a15d745b80c93f67792811b0bab2358134.zip |
Travis: Fix coveralls upload.
-rwxr-xr-x | .ci/after_success.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.ci/after_success.sh b/.ci/after_success.sh index 580b988061..0215eb139b 100755 --- a/.ci/after_success.sh +++ b/.ci/after_success.sh @@ -3,8 +3,6 @@ set -e set -o pipefail -if [[ -n "${CI_TARGET}" ]]; then - exit +if [[ -n "${GCOV}" ]]; then + coveralls --gcov "$(which "${GCOV}")" --encoding iso-8859-1 || echo 'coveralls upload failed.' fi - -[ "$USE_GCOV" = on ] && { coveralls --gcov "$(which "${GCOV}")" --encoding iso-8859-1 || echo 'coveralls upload failed.' ; } |