File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11module Docs
22 class Go < UrlScraper
33 self . type = 'go'
4- self . release = '1.25.0 '
4+ self . release = '1.25.1 '
55 self . base_url = 'https://golang.org/pkg/'
66 self . links = {
77 home : 'https://golang.org/' ,
@@ -10,16 +10,16 @@ class Go < UrlScraper
1010
1111 # Run godoc locally, since https://golang.org/pkg/ redirects to https://pkg.go.dev/std with rate limiting / scraping protection.
1212
13- # podman run --net host --rm -it docker.io/golang:1.25.0
13+ # podman run --net host --rm -it docker.io/golang:1.25.1
1414 #podman# go install golang.org/x/tools/cmd/godoc@latest
1515 #podman# rm -r /usr/local/go/test/
1616 #podman# godoc -http 0.0.0.0:6060 -v
1717
1818 # or using alpine
1919 # podman run --net host --rm -it alpine:latest
2020 #podman# apk add curl
21- #podman# curl -LO https://go.dev/dl/go1.25.0 .linux-amd64.tar.gz
22- #podman# tar xf go1.25.0 .linux-amd64.tar.gz
21+ #podman# curl -LO https://go.dev/dl/go1.25.1 .linux-amd64.tar.gz
22+ #podman# tar xf go1.25.1 .linux-amd64.tar.gz
2323 #podman# go/bin/go install golang.org/x/tools/cmd/godoc@latest
2424 #podman# /root/go/bin/godoc -http 0.0.0.0:6060 -v
2525
You can’t perform that action at this time.
0 commit comments