From b512286f25c7e23f9ac911f6ae864d6736c91a92 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 3 Jun 2017 14:04:16 +0200 Subject: pkg/git: don't use --no-tags with clone It's not supported in older versions of git. --- pkg/git/git.go | 1 - 1 file changed, 1 deletion(-) (limited to 'pkg/git/git.go') diff --git a/pkg/git/git.go b/pkg/git/git.go index 30cf2cafb..8ee05f9fe 100644 --- a/pkg/git/git.go +++ b/pkg/git/git.go @@ -29,7 +29,6 @@ func Poll(dir, repo, branch string) (string, error) { args := []string{ "clone", repo, - "--no-tags", "--depth", "1", "--single-branch", "--branch", branch, -- cgit mrf-deployment