1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 04:46:32 +01:00
gojekyll/commands/version.go
2017-07-12 20:40:05 -04:00

13 lines
184 B
Go

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