mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
9 lines
173 B
Bash
Executable File
9 lines
173 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
if [[ -n "${GCOV}" ]]; then
|
|
coveralls --gcov "$(which "${GCOV}")" --encoding iso-8859-1 || echo 'coveralls upload failed.'
|
|
fi
|