neovim/ci/after_success.sh

9 lines
173 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
set -o pipefail
2016-07-17 03:42:43 -07:00
if [[ -n "${GCOV}" ]]; then
coveralls --gcov "$(which "${GCOV}")" --encoding iso-8859-1 || echo 'coveralls upload failed.'
fi