mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 11:05:45 +00:00
cmd/printdep: support printing the toolchain SRI hash.
Updates #6845. Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
d2beaea523
commit
7bfb9999ee
@ -19,6 +19,7 @@
|
||||
var (
|
||||
goToolchain = flag.Bool("go", false, "print the supported Go toolchain git hash (a github.com/tailscale/go commit)")
|
||||
goToolchainURL = flag.Bool("go-url", false, "print the URL to the tarball of the Tailscale Go toolchain")
|
||||
goToolchainSRI = flag.Bool("go-sri", false, "print the SRI hash of the Tailscale Go toolchain")
|
||||
alpine = flag.Bool("alpine", false, "print the tag of alpine docker image")
|
||||
)
|
||||
|
||||
@ -48,4 +49,7 @@ func main() {
|
||||
}
|
||||
fmt.Printf("https://github.com/tailscale/go/releases/download/build-%s/%s%s.tar.gz\n", strings.TrimSpace(ts.GoToolchainRev), runtime.GOOS, suffix)
|
||||
}
|
||||
if *goToolchainSRI {
|
||||
fmt.Println(strings.TrimSpace(ts.GoToolchainSRI))
|
||||
}
|
||||
}
|
||||
|
@ -18,3 +18,9 @@
|
||||
//
|
||||
//go:embed go.toolchain.rev
|
||||
var GoToolchainRev string
|
||||
|
||||
// GoToolchainSRI is the Nix SRI hash of the Go toolchain identified
|
||||
// by GoToolchainRev. It may end in a newline.
|
||||
//
|
||||
//go:embed go.toolchain.sri
|
||||
var GoToolchainSRI string
|
||||
|
Loading…
Reference in New Issue
Block a user