ci: remove update-lockfile shell script

This commit is contained in:
Christian Clason 2023-05-29 16:52:20 +02:00
parent cde679e435
commit 9c0a99819c
15 changed files with 84 additions and 103 deletions

15
scripts/install-parsers.lua Executable file
View 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)