aboutsummaryrefslogtreecommitdiff
path: root/go/vcs/vcs.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/vcs/vcs.go')
-rw-r--r--go/vcs/vcs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/vcs/vcs.go b/go/vcs/vcs.go
index 471f841..2e2df04 100644
--- a/go/vcs/vcs.go
+++ b/go/vcs/vcs.go
@@ -212,7 +212,7 @@ func (v *Cmd) run1(dir string, cmdline string, keyval []string, verbose bool) ([
return nil, err
}
- cmd := exec.Command(v.Cmd, args...)
+ cmd := exec.Command(v.Cmd, args...) //nolint: gosec
cmd.Dir = dir
cmd.Env = envForDir(cmd.Dir)
if ShowCmd {