mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 11:05:45 +00:00
cmd/printdep: print correct toolchain URL
In the switch to static toolchains, we removed a legacy oddity from the toolchain URL structure, but forgot to update printdep. Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
b64d900f0f
commit
bd81d520ab
@ -31,20 +31,11 @@ func main() {
|
|||||||
fmt.Println(strings.TrimSpace(ts.GoToolchainRev))
|
fmt.Println(strings.TrimSpace(ts.GoToolchainRev))
|
||||||
}
|
}
|
||||||
if *goToolchainURL {
|
if *goToolchainURL {
|
||||||
var suffix string
|
|
||||||
switch runtime.GOARCH {
|
|
||||||
case "amd64":
|
|
||||||
// None
|
|
||||||
case "arm64":
|
|
||||||
suffix = "-" + runtime.GOARCH
|
|
||||||
default:
|
|
||||||
log.Fatalf("unsupported GOARCH %q", runtime.GOARCH)
|
|
||||||
}
|
|
||||||
switch runtime.GOOS {
|
switch runtime.GOOS {
|
||||||
case "linux", "darwin":
|
case "linux", "darwin":
|
||||||
default:
|
default:
|
||||||
log.Fatalf("unsupported GOOS %q", runtime.GOOS)
|
log.Fatalf("unsupported GOOS %q", runtime.GOOS)
|
||||||
}
|
}
|
||||||
fmt.Printf("https://github.com/tailscale/go/releases/download/build-%s/%s%s.tar.gz\n", strings.TrimSpace(ts.GoToolchainRev), runtime.GOOS, suffix)
|
fmt.Printf("https://github.com/tailscale/go/releases/download/build-%s/%s-%s.tar.gz\n", strings.TrimSpace(ts.GoToolchainRev), runtime.GOOS, runtime.GOARCH)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user