mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 07:34:43 +01:00
13 lines
184 B
Go
13 lines
184 B
Go
|
package gojekyll
|
||
|
|
||
|
// Version is the build version.
|
||
|
//
|
||
|
// Make initializes this to the git commit hash.
|
||
|
var Version string
|
||
|
|
||
|
func init() {
|
||
|
if Version == "" {
|
||
|
Version = "develop"
|
||
|
}
|
||
|
}
|