aboutsummaryrefslogtreecommitdiff
path: root/internal/testgit/command.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-06-24 05:30:43 +0000
committerGravatar Runxi Yu2026-06-24 05:30:43 +0000
commitfc5f3a7d9cdf5407894a97c4637a3c3a6ec110d9 (patch)
tree86f6bdf6433d5d94720d40499757bd485193ce1e /internal/testgit/command.go
parentobject/store/packed/internal/ingest: Concurrent resolver (diff)
Basic lint fix
Diffstat (limited to 'internal/testgit/command.go')
-rw-r--r--internal/testgit/command.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/testgit/command.go b/internal/testgit/command.go
index 4e696ece..4fc8ab17 100644
--- a/internal/testgit/command.go
+++ b/internal/testgit/command.go
@@ -15,7 +15,7 @@ func (repo *Repo) command(
) *exec.Cmd {
tb.Helper()
- cmd := exec.CommandContext(tb.Context(), command, args...) //nolint:gosec
+ cmd := exec.CommandContext(tb.Context(), command, args...)
cmd.Dir = repo.path
cmd.Env = repo.env