diff options
author | Daniel Hahler <git@thequod.de> | 2019-10-07 13:01:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-07 13:01:14 +0200 |
commit | 6ea49d8c76388010ab066f53544074347c4dce01 (patch) | |
tree | bcb965e8f3005dfaabeed2f373e0d95d9ae8b365 | |
parent | 23ba875b821c454e81093de83f7fd6555a4dd0c4 (diff) | |
download | rneovim-6ea49d8c76388010ab066f53544074347c4dce01.tar.gz rneovim-6ea49d8c76388010ab066f53544074347c4dce01.tar.bz2 rneovim-6ea49d8c76388010ab066f53544074347c4dce01.zip |
ci: use cluacov for better performance (#11152)
-rwxr-xr-x | ci/before_script.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/before_script.sh b/ci/before_script.sh index 6a07c6747e..a0e87adb9e 100755 --- a/ci/before_script.sh +++ b/ci/before_script.sh @@ -35,9 +35,9 @@ fi # Compile dependencies. build_deps -# Install luacov for Lua coverage. +# Install cluacov for Lua coverage. if [[ "$USE_LUACOV" == 1 ]]; then - "${DEPS_BUILD_DIR}/usr/bin/luarocks" install luacov + "${DEPS_BUILD_DIR}/usr/bin/luarocks" install cluacov fi rm -rf "${LOG_DIR}" |