Skip to content

Commit

Permalink
updates date flag to be set by goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
avarabyeu committed Mar 12, 2024
1 parent 91d9953 commit ea02ddb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/gorp/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
)

var (
version = ""
buildDate = ""
version = "dev"
date = "unknown"
)

func main() {
Expand All @@ -26,7 +26,7 @@ func main() {
app := cli.NewApp()
app.Name = "goRP"
app.Usage = "ReportPortal CLI Client"
app.Version = fmt.Sprintf("%s (%s)", version, buildDate)
app.Version = fmt.Sprintf("%s (%s)", version, date)
app.Authors = []*cli.Author{{
Name: "Andrei Varabyeu",
Email: "[email protected]",
Expand Down

0 comments on commit ea02ddb

Please sign in to comment.