diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-05-20 17:38:33 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2025-05-12 18:43:40 +0200 |
| commit | 5aa2984a028731bf60d53a7f9773997dfc84e4f7 (patch) | |
| tree | fad9ce8fac1e6571722e419f99f4aa4f82d9b834 /scripts | |
| parent | feat!: drop luarocks release (diff) | |
| download | nvim-treesitter-5aa2984a028731bf60d53a7f9773997dfc84e4f7.tar nvim-treesitter-5aa2984a028731bf60d53a7f9773997dfc84e4f7.tar.gz nvim-treesitter-5aa2984a028731bf60d53a7f9773997dfc84e4f7.tar.bz2 nvim-treesitter-5aa2984a028731bf60d53a7f9773997dfc84e4f7.tar.lz nvim-treesitter-5aa2984a028731bf60d53a7f9773997dfc84e4f7.tar.xz nvim-treesitter-5aa2984a028731bf60d53a7f9773997dfc84e4f7.tar.zst nvim-treesitter-5aa2984a028731bf60d53a7f9773997dfc84e4f7.zip | |
refactor: use vim.fs.joinpath
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/write-lockfile.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/write-lockfile.lua b/scripts/write-lockfile.lua index a264af83c..5dac838d6 100755 --- a/scripts/write-lockfile.lua +++ b/scripts/write-lockfile.lua @@ -2,7 +2,7 @@ vim.opt.runtimepath:append('.') -- Load previous lockfile -local filename = require('nvim-treesitter.utils').get_package_path('lockfile.json') +local filename = require('nvim-treesitter.shell_cmds').get_package_path('lockfile.json') local file = assert(io.open(filename, 'r')) local lockfile = vim.json.decode(file:read('*a')) file:close() |
