1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-12 00:39:41 +01:00
gojekyll/cmd/version.go

13 lines
179 B
Go
Raw Normal View History

2017-07-14 01:02:30 +02:00
package cmd
2017-07-05 17:18:46 +02:00
// Version is the build version.
//
// Make initializes this to the git commit hash.
var Version string
func init() {
if Version == "" {
Version = "develop"
}
}