aboutsummaryrefslogtreecommitdiff
path: root/go/vcs/vcs.go
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2019-12-27 21:45:51 +0700
committerShulhan <m.shulhan@gmail.com>2019-12-27 21:45:51 +0700
commitb5f28512de8cf3fcc7fe31fb7c11570816f86a0f (patch)
tree9eb797f2f751e339f62c38129d6668ba244a0f4b /go/vcs/vcs.go
parenta35233a2804d6112077157bd15038662107eb2ac (diff)
downloadbeku-b5f28512de8cf3fcc7fe31fb7c11570816f86a0f.tar.xz
all: fix linter warnings
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 {