mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-20 00:10:20 -05:00
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>
12 lines
173 B
Go
12 lines
173 B
Go
package version
|
|
|
|
import "strings"
|
|
|
|
var (
|
|
Program = "k3s"
|
|
ProgramUpper = strings.ToUpper(Program)
|
|
Version = "dev"
|
|
GitCommit = "HEAD"
|
|
|
|
UpstreamGolang = ""
|
|
)
|