26 lines
599 B
Go
26 lines
599 B
Go
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package version
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
"strings"
|
|
)
|
|
|
|
func String() string {
|
|
var ret strings.Builder
|
|
ret.WriteString(Short)
|
|
ret.WriteByte('\n')
|
|
if GitCommit != "" {
|
|
fmt.Fprintf(&ret, " tailscale commit: %s\n", GitCommit)
|
|
}
|
|
if ExtraGitCommit != "" {
|
|
fmt.Fprintf(&ret, " other commit: %s\n", ExtraGitCommit)
|
|
}
|
|
fmt.Fprintf(&ret, " go version: %s\n", runtime.Version())
|
|
return strings.TrimSpace(ret.String())
|
|
}
|