1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 21:34:45 +01:00
gojekyll/version/version.go

29 lines
472 B
Go
Raw Permalink Normal View History

2017-08-14 21:23:00 +02:00
package version
import (
"fmt"
"os"
"time"
)
// "make" initializes Version to the git commit hash, and BuildDate.
var (
Version string
BuildDate string
BuildTime time.Time
)
func init() {
if Version == "" {
Version = "develop"
}
if BuildDate != "" {
bd, err := time.Parse("2006-01-02T15:04:05-0700", BuildDate)
if err != nil {
fmt.Fprintln(os.Stderr, "invalid BuildDate", BuildDate) // nolint: gas
} else {
BuildTime = bd.In(time.UTC)
}
}
}