summaryrefslogtreecommitdiffstats
path: root/releaser
diff options
context:
space:
mode:
Diffstat (limited to 'releaser')
-rw-r--r--releaser/git.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/releaser/git.go b/releaser/git.go
index 9527b5113..69ba6268b 100644
--- a/releaser/git.go
+++ b/releaser/git.go
@@ -291,10 +291,6 @@ func gitVersionTagBefore(ref string) (string, error) {
return gitShort("describe", "--tags", "--abbrev=0", "--always", "--match", "v[0-9]*", ref+"^")
}
-func gitLog() (string, error) {
- return gitLogBefore("HEAD", "", "")
-}
-
func gitShort(args ...string) (output string, err error) {
output, err = git(args...)
return strings.Replace(strings.Split(output, "\n")[0], "'", "", -1), err