From 364ad3da45b5645a2cc4f2ed889999f1de878e38 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Fri, 21 Apr 2017 21:58:59 -0300 Subject: [PATCH] cleanup --- .gitignore | 4 ---- cmd/goreleaser/main.go | 3 ++- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 931097223..d575ed404 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,3 @@ dist/ vendor -goreleaser -!cmd/goreleaser -.glide/ -coverage.out coverage.txt diff --git a/cmd/goreleaser/main.go b/cmd/goreleaser/main.go index e327bcf61..b5cf50996 100644 --- a/cmd/goreleaser/main.go +++ b/cmd/goreleaser/main.go @@ -1,6 +1,7 @@ package main import ( + "fmt" "log" "os" @@ -17,7 +18,7 @@ var ( func main() { var app = cli.NewApp() app.Name = "goreleaser" - app.Version = version + ", commit " + commit + ", built at " + date + app.Version = fmt.Sprintf("%v, commit %v, built at %v", version, commit, date) app.Usage = "Deliver Go binaries as fast and easily as possible" app.Flags = []cli.Flag{ cli.StringFlag{