diff options
-rw-r--r-- | .ci/common/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/common/test.sh b/.ci/common/test.sh index 02d0b3a645..1e66ecb239 100644 --- a/.ci/common/test.sh +++ b/.ci/common/test.sh @@ -96,7 +96,7 @@ install_nvim() { # Check that generated syntax file has function names, #5060. local gpat='syn keyword vimFuncName .*eval' - if ! grep -q "$gpat" $genvimsynf ; then + if ! grep -q "$gpat" "${INSTALL_PREFIX}/share/nvim/runtime/$genvimsynf"; then echo "It appears that $genvimsynf does not contain $gpat." exit 1 fi |