5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 03:42:32 +00:00

Merge pull request #605 from wfleurant/src-version

Src version: return unknown not yggdrasilctl
This commit is contained in:
Arceliar 2019-11-19 19:35:45 -06:00 committed by GitHub
commit c0be481cde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ var buildVersion string
// from git, or returns "unknown" otherwise. // from git, or returns "unknown" otherwise.
func BuildName() string { func BuildName() string {
if buildName == "" { if buildName == "" {
return "yggdrasilctl" return "unknown"
} }
return buildName return buildName
} }