mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 20:09:27 +00: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>
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 = ""
|
|
)
|