diff options
| author | dundargoc <gocdundar@gmail.com> | 2024-11-27 12:26:00 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-11-27 14:56:17 +0100 |
| commit | 2a11b98741d168790cf6fa6798e991b3f78bf314 (patch) | |
| tree | 568b531425172c7efaff914fbc39d46c1a7b2bfa /.github | |
| parent | refactor: group deprecated functions at the end (diff) | |
| download | nvim-lspconfig-2a11b98741d168790cf6fa6798e991b3f78bf314.tar nvim-lspconfig-2a11b98741d168790cf6fa6798e991b3f78bf314.tar.gz nvim-lspconfig-2a11b98741d168790cf6fa6798e991b3f78bf314.tar.bz2 nvim-lspconfig-2a11b98741d168790cf6fa6798e991b3f78bf314.tar.lz nvim-lspconfig-2a11b98741d168790cf6fa6798e991b3f78bf314.tar.xz nvim-lspconfig-2a11b98741d168790cf6fa6798e991b3f78bf314.tar.zst nvim-lspconfig-2a11b98741d168790cf6fa6798e991b3f78bf314.zip | |
refactor: deprecate `util.path.exists`
Use `vim.uv.fs_stat` instead.
Work on https://github.com/neovim/nvim-lspconfig/issues/2079.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ci/run_sanitizer.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ci/run_sanitizer.sh b/.github/ci/run_sanitizer.sh index 07d4723c..b906bf80 100644 --- a/.github/ci/run_sanitizer.sh +++ b/.github/ci/run_sanitizer.sh @@ -15,7 +15,7 @@ if git diff --pickaxe-all -U0 -G "${SEARCH_PATTERN}" "${REF_BRANCH}" "${PR_BRANC exit 1 fi -SEARCH_PATTERN='(util\.path\.dirname|util\.path\.sanitize)' +SEARCH_PATTERN='(util\.path\.dirname|util\.path\.sanitize|util\.path\.exists)' if git diff --pickaxe-all -U0 -G "${SEARCH_PATTERN}" "${REF_BRANCH}" "${PR_BRANCH}" -- '*.lua' | grep -Ev '\.lua$' | grep -E "^\+.*${SEARCH_PATTERN}" ; then echo |
