Skip to content

Commit

Permalink
GIT_TERMINAL_PROMPT=0
Browse files Browse the repository at this point in the history
See: #57
Fixes: #4, #32, #33, #59, #61
  • Loading branch information
Sergio Alejandro Vargas committed Aug 13, 2021
1 parent e70d2c6 commit 9ac19e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/paq.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ local function call_proc(process, args, cwd, cb)
stderr:open(log)
handle = uv.spawn(
process,
{args = args, cwd = cwd, stdio = {nil, nil, stderr}},
{args=args, cwd=cwd, stdio={nil, nil, stderr}, env={'GIT_TERMINAL_PROMPT=0'}},
vim.schedule_wrap(function(code)
uv.fs_close(log)
stderr:close()
Expand Down

0 comments on commit 9ac19e4

Please sign in to comment.