mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 03:40:04 -04:00
fix(install): remove .gitignore from parser directory
This commit is contained in:
parent
81e8f3dbc2
commit
5ea748aab5
3 changed files with 7 additions and 2 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
parser/*.so
|
||||||
|
|
@ -29,6 +29,12 @@ local function run_install(cache_folder, package_path, ft, repo)
|
||||||
local compile_location = cache_folder..'/'..(repo.location or project_name)
|
local compile_location = cache_folder..'/'..(repo.location or project_name)
|
||||||
local parser_lib_name = package_path.."/parser/"..ft..".so"
|
local parser_lib_name = package_path.."/parser/"..ft..".so"
|
||||||
local command_list = {
|
local command_list = {
|
||||||
|
{
|
||||||
|
cmd = 'mkdir',
|
||||||
|
opts = {
|
||||||
|
args = { '-p', package_path.."/parser" }
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
cmd = 'rm',
|
cmd = 'rm',
|
||||||
opts = {
|
opts = {
|
||||||
|
|
|
||||||
2
parser/.gitignore
vendored
2
parser/.gitignore
vendored
|
|
@ -1,2 +0,0 @@
|
||||||
*
|
|
||||||
!.gitignore
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue