diff options
| author | dundargoc <gocdundar@gmail.com> | 2024-12-22 14:08:38 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-12-22 14:44:02 +0100 |
| commit | 9204642002ba91f9e0b7d0e5989f373657fe754a (patch) | |
| tree | 7c9599930582a5f6b364dac84621d10384ac383b /.github | |
| parent | refactor: silence luals warnings (diff) | |
| download | nvim-lspconfig-9204642002ba91f9e0b7d0e5989f373657fe754a.tar nvim-lspconfig-9204642002ba91f9e0b7d0e5989f373657fe754a.tar.gz nvim-lspconfig-9204642002ba91f9e0b7d0e5989f373657fe754a.tar.bz2 nvim-lspconfig-9204642002ba91f9e0b7d0e5989f373657fe754a.tar.lz nvim-lspconfig-9204642002ba91f9e0b7d0e5989f373657fe754a.tar.xz nvim-lspconfig-9204642002ba91f9e0b7d0e5989f373657fe754a.tar.zst nvim-lspconfig-9204642002ba91f9e0b7d0e5989f373657fe754a.zip | |
refactor: deprecate util.path.iterate_parents
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 af1ceeb8..edcf4b5a 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|util\.path\.is_dir|util\.path\.join|util\.find_mercurial_ancestor|util\.find_node_modules_ancestor|util\.find_package_json_ancestor|util\.find_git_ancestor)' +SEARCH_PATTERN='(util\.path\.dirname|util\.path\.sanitize|util\.path\.exists|util\.path\.is_file|util\.path\.is_dir|util\.path\.join|util\.path\.iterate_parents|util\.find_mercurial_ancestor|util\.find_node_modules_ancestor|util\.find_package_json_ancestor|util\.find_git_ancestor)' if git diff --pickaxe-all -U0 -G "${SEARCH_PATTERN}" "${REF_BRANCH}" "${PR_BRANCH}" -- '*.lua' | grep -Ev '\.lua$' | grep -E "^\+.*${SEARCH_PATTERN}" ; then echo |
