1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00
This commit is contained in:
Carlos Alexandro Becker 2017-04-21 21:58:59 -03:00
parent b5752f1f25
commit 364ad3da45
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 2 additions and 5 deletions

4
.gitignore vendored
View File

@ -1,7 +1,3 @@
dist/
vendor
goreleaser
!cmd/goreleaser
.glide/
coverage.out
coverage.txt

View File

@ -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{