From c24384eb8f780ec393dba899babee92002c8397b Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Fri, 10 Nov 2017 13:28:28 -0500 Subject: [PATCH] Awk is sad --- version/version.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/version/version.go b/version/version.go index 9751f43..34c04b3 100644 --- a/version/version.go +++ b/version/version.go @@ -2,16 +2,11 @@ package version import "fmt" -// Version is the version of the project. const Version = "0.0.1" var ( - // Name is the name of the project. - Name string - - // GitCommit is the git sha of this build. + Name string GitCommit string - // HumanVersion is the human-friendly version. HumanVersion = fmt.Sprintf("%s v%s (%s)", Name, Version, GitCommit) )