mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
13 lines
188 B
Bash
Executable File
13 lines
188 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
ci/run_${CI_TARGET}.sh
|
|
|
|
if [[ -s "${GCOV_ERROR_FILE}" ]]; then
|
|
echo '=== Unexpected gcov errors: ==='
|
|
cat "${GCOV_ERROR_FILE}"
|
|
exit 1
|
|
fi
|