From 472947468d9571f86c2fde301a04478f22b3544b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 11 Sep 2018 13:21:56 +0200 Subject: pkg/vcs: add openbsd support This just says that we want to use git to checkout OpenBSD without any special/complex features. Update #712 --- pkg/vcs/git.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'pkg/vcs/git.go') 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, } } -- cgit mrf-deployment