mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
ci: remove update-lockfile shell script
This commit is contained in:
parent
cde679e435
commit
9c0a99819c
15 changed files with 84 additions and 103 deletions
15
scripts/install-parsers.lua
Executable file
15
scripts/install-parsers.lua
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env -S nvim -l
|
||||
|
||||
vim.opt.runtimepath:append('.')
|
||||
|
||||
-- needed on CI
|
||||
vim.fn.mkdir(vim.fn.stdpath('cache'), 'p')
|
||||
|
||||
local done = false
|
||||
require('nvim-treesitter.install').install('all', {}, function()
|
||||
done = true
|
||||
end)
|
||||
|
||||
vim.wait(6000000, function()
|
||||
return done
|
||||
end)
|
||||
Loading…
Add table
Add a link
Reference in a new issue