1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-11 22:29:36 +01:00
gojekyll/cmd/version.go
2017-07-13 19:02:30 -04:00

13 lines
179 B
Go

package cmd
// Version is the build version.
//
// Make initializes this to the git commit hash.
var Version string
func init() {
if Version == "" {
Version = "develop"
}
}