Skip to content

Commit

Permalink
change var names to match buildflags set by goreleaser (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
SUSTAPLE117 authored May 13, 2024
1 parent 1e23b68 commit 6f6f4e4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions poutine.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import (
)

var (
Version = "development"
Commit = "none"
Date = "unknown"
version = "development"
commit = "none"
date = "unknown"
)

func main() {
cmd.Commit = Commit
cmd.Version = Version
cmd.Date = Date
cmd.Commit = commit
cmd.Version = version
cmd.Date = date
cmd.Execute()
}

0 comments on commit 6f6f4e4

Please sign in to comment.