mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
02a2dcfc86
Also removes the toolchain builds from flake.nix. For now the flake build uses upstream Go 1.20, a followup change will switch it back to our custom toolchain. Updates tailscale/corp#9005 Signed-off-by: David Anderson <danderson@tailscale.com>
20 lines
467 B
Go
20 lines
467 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package tailscaleroot embeds VERSION.txt into the binary.
|
|
package tailscaleroot
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed VERSION.txt
|
|
var Version string
|
|
|
|
//go:embed ALPINE.txt
|
|
var AlpineDockerTag string
|
|
|
|
// GoToolchainRev is the git hash from github.com/tailscale/go that this release
|
|
// should be built using. It may end in a newline.
|
|
//
|
|
//go:embed go.toolchain.rev
|
|
var GoToolchainRev string
|