fix(#1494): git showUntracked value and log (#1504)

* should_show_untracked correctly evaluates status.showUntrackedFiles

* git.Runner:_run_git_job removes nils before logging args
This commit is contained in:
axlauri
2022-08-15 00:30:22 -04:00
committed by GitHub
parent b314b3a699
commit 09a51266bc
3 changed files with 9 additions and 3 deletions

View File

@@ -84,7 +84,7 @@ function Runner:_run_git_job()
local opts = self:_getopts(stdout, stderr)
log.line("git", "running job with timeout %dms", self.timeout)
log.line("git", "git %s", table.concat(opts.args, " "))
log.line("git", "git %s", table.concat(utils.array_remove_nils(opts.args), " "))
handle, pid = uv.spawn(
"git",