goshorly/utils/build-vars.go

16 lines
214 B
Go
Raw Normal View History

2021-12-08 10:04:28 +00:00
package utils
var (
GitCommitShort string
GitBranch string
GitBuild bool
)
func Init_build_vars() {
if GitCommitShort == "" && GitBranch == "" {
GitBuild = false
} else {
GitBuild = true
}
}