mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-31 07:09:23 +02:00
chore: bump plugins version (#2723)
This commit is contained in:
parent
48320e5f88
commit
6ab3e8a739
5 changed files with 71 additions and 71 deletions
|
@ -13,16 +13,14 @@ local function git_cmd(opts)
|
|||
opts.cwd = opts.cwd or get_lvim_base_dir()
|
||||
|
||||
local stderr = {}
|
||||
local stdout, ret = Job
|
||||
:new({
|
||||
command = "git",
|
||||
args = opts.args,
|
||||
cwd = opts.cwd,
|
||||
on_stderr = function(_, data)
|
||||
table.insert(stderr, data)
|
||||
end,
|
||||
})
|
||||
:sync()
|
||||
local stdout, ret = Job:new({
|
||||
command = "git",
|
||||
args = opts.args,
|
||||
cwd = opts.cwd,
|
||||
on_stderr = function(_, data)
|
||||
table.insert(stderr, data)
|
||||
end,
|
||||
}):sync()
|
||||
|
||||
if not vim.tbl_isempty(stderr) then
|
||||
Log:debug(stderr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue