diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-11-28 23:39:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-28 14:39:12 -0800 |
| commit | 6a5ed22255bbe10104ff9b72c55ec2e233a8e571 (patch) | |
| tree | 6f34f9fbbdaf654a7e33b5ecc5ff5168607115b9 /.github | |
| parent | refactor: deprecate util.path.is_file #3474 (diff) | |
| download | nvim-lspconfig-6a5ed22255bbe10104ff9b72c55ec2e233a8e571.tar nvim-lspconfig-6a5ed22255bbe10104ff9b72c55ec2e233a8e571.tar.gz nvim-lspconfig-6a5ed22255bbe10104ff9b72c55ec2e233a8e571.tar.bz2 nvim-lspconfig-6a5ed22255bbe10104ff9b72c55ec2e233a8e571.tar.lz nvim-lspconfig-6a5ed22255bbe10104ff9b72c55ec2e233a8e571.tar.xz nvim-lspconfig-6a5ed22255bbe10104ff9b72c55ec2e233a8e571.tar.zst nvim-lspconfig-6a5ed22255bbe10104ff9b72c55ec2e233a8e571.zip | |
refactor: deprecate util.path.is_dir #3475
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 09821731..f2fadb9c 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|util\.path\.exists|util\.path\.is_file)' +SEARCH_PATTERN='(util\.path\.dirname|util\.path\.sanitize|util\.path\.exists|util\.path\.is_file|util\.path\.is_dir)' if git diff --pickaxe-all -U0 -G "${SEARCH_PATTERN}" "${REF_BRANCH}" "${PR_BRANCH}" -- '*.lua' | grep -Ev '\.lua$' | grep -E "^\+.*${SEARCH_PATTERN}" ; then echo |
