git-lfs/config/version.go
2016-10-17 13:44:04 -06:00

29 lines
404 B
Go

package config
import (
"fmt"
"runtime"
"strings"
)
var (
GitCommit string
Version = "1.4.3"
VersionDesc string
)
func init() {
gitCommit := ""
if len(GitCommit) > 0 {
gitCommit = "; git " + GitCommit
}
VersionDesc = fmt.Sprintf("git-lfs/%s (GitHub; %s %s; go %s%s)",
Version,
runtime.GOOS,
runtime.GOARCH,
strings.Replace(runtime.Version(), "go", "", 1),
gitCommit,
)
}