mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
Include Go toolchain to --version (#5830)
* Include Go version * fix import order
This commit is contained in:
parent
4aa2f4f45f
commit
d6c229cdbe
1 changed files with 3 additions and 2 deletions
5
main.go
5
main.go
|
@ -8,6 +8,7 @@ package main // import "code.gitea.io/gitea"
|
|||
|
||||
import (
|
||||
"os"
|
||||
"runtime"
|
||||
"strings"
|
||||
|
||||
"code.gitea.io/gitea/cmd"
|
||||
|
@ -61,8 +62,8 @@ arguments - which can alternatively be run by running the subcommand web.`
|
|||
|
||||
func formatBuiltWith(Tags string) string {
|
||||
if len(Tags) == 0 {
|
||||
return ""
|
||||
return " built with " + runtime.Version()
|
||||
}
|
||||
|
||||
return " built with: " + strings.Replace(Tags, " ", ", ", -1)
|
||||
return " built with " + runtime.Version() + " : " + strings.Replace(Tags, " ", ", ", -1)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue