From df982a6a3b402f0a3bf9147473a5adda0da08d6b Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Thu, 21 Dec 2023 20:15:55 +0800 Subject: [PATCH] docs: update the link to the go wiki page on first-class ports (#4490) This change updates broken links to the old Go wiki to point to the new location. --- www/docs/customization/builds.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/docs/customization/builds.md b/www/docs/customization/builds.md index 1db34758bc5..d6ad6b71023 100644 --- a/www/docs/customization/builds.md +++ b/www/docs/customization/builds.md @@ -268,7 +268,7 @@ builds: ```sh go tool dist list -json | jq -r '.[] | select(.FirstClass) | [.GOOS, .GOARCH] | @tsv' ``` - We also recommend reading the [official wiki about Go ports](https://github.com/golang/go/wiki/PortingPolicy#first-class-ports). + We also recommend reading the [official wiki about Go ports](https://go.dev/wiki/PortingPolicy#first-class-ports). Here is an example with multiple binaries: @@ -559,7 +559,7 @@ The `targets` option can take a `go_first_class` special value as target, which will evaluate to the list of first class ports as defined in the Go wiki. You can read more about it -[here](https://github.com/golang/go/wiki/PortingPolicy#first-class-ports). +[here](https://go.dev/wiki/PortingPolicy#first-class-ports). ## Building shared or static libraries