mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Only compute version once
This commit is contained in:
parent
ebad96b8a4
commit
4cf43ed735
8 changed files with 20 additions and 10 deletions
|
@ -11,15 +11,16 @@ var (
|
|||
gitSha string
|
||||
)
|
||||
|
||||
// Formats:
|
||||
// Version holds the version string, with tag and git sha info.
|
||||
// Examples:
|
||||
// dev
|
||||
// v0.2.0 (5b84188)
|
||||
// v0.3.2-SNAPSHOT (715f552)
|
||||
// master (9ed35cb)
|
||||
func Version() string {
|
||||
var Version = func() string {
|
||||
if gitSha == "" {
|
||||
return "dev"
|
||||
}
|
||||
gitTag = strings.TrimPrefix(gitTag, "v")
|
||||
return fmt.Sprintf("%s (%s)", gitTag, gitSha)
|
||||
}
|
||||
}()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue