aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/git.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-09-11 13:21:56 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-09-11 14:47:38 +0200
commit472947468d9571f86c2fde301a04478f22b3544b (patch)
tree6a37d0a3019fb746405edcb72939f36e92b3c9f9 /pkg/vcs/git.go
parent20c13d3ce56c7723a1ba203405c5d8aadb051ca5 (diff)
pkg/vcs: add openbsd support
This just says that we want to use git to checkout OpenBSD without any special/complex features. Update #712
Diffstat (limited to 'pkg/vcs/git.go')
-rw-r--r--pkg/vcs/git.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkg/vcs/git.go b/pkg/vcs/git.go
index f064dadb1..bc0e05373 100644
--- a/pkg/vcs/git.go
+++ b/pkg/vcs/git.go
@@ -20,15 +20,11 @@ import (
)
type git struct {
- os string
- vm string
dir string
}
-func newGit(os, vm, dir string) *git {
+func newGit(dir string) *git {
return &git{
- os: os,
- vm: vm,
dir: dir,
}
}