mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
b297996b92
Forces other groups packaging k3s to intentionally choose to build k3s with an unvalidated golang version Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
13 lines
173 B
Go
13 lines
173 B
Go
package version
|
|
|
|
import "strings"
|
|
|
|
var (
|
|
Program = "k3s"
|
|
ProgramUpper = strings.ToUpper(Program)
|
|
Version = "dev"
|
|
GitCommit = "HEAD"
|
|
|
|
UpstreamGolang = ""
|
|
)
|