aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/git.go
diff options
context:
space:
mode:
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,
}
}