fix(install): remove .gitignore from parser directory

This commit is contained in:
Steven Sojka 2020-06-19 11:09:49 -05:00
parent 81e8f3dbc2
commit 5ea748aab5
3 changed files with 7 additions and 2 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
parser/*.so

View file

@ -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
View file

@ -1,2 +0,0 @@
*
!.gitignore