diff options
author | Dmitri Shuralyov <dmitshur@golang.org> | 2019-08-29 21:37:24 -0400 |
---|---|---|
committer | Dmitri Shuralyov <dmitshur@golang.org> | 2019-08-30 17:24:46 +0000 |
commit | 57fd8e04139144bc1e7be79ad1befecc58027756 (patch) | |
tree | 2a53a6502ad3817935a653f7a9328de7c99629b4 /content/module-mirror-launch.article | |
parent | bc02ff06e0f254fa5695b78940d0c276fee47b7c (diff) |
content: use gosumcheck command from x/mod subrepo
The gosumcheck command was copied out of x/exp subrepo into the new
x/mod subrepo in CL 176639. It's already being used on the index
page of https://proxy.golang.org. Use it in the blog post too.
Change-Id: I0d21c7d876baabf8b16d999c956512b62c47532f
Reviewed-on: https://go-review.googlesource.com/c/blog/+/192419
Reviewed-by: Katie Hockman <katie@golang.org>
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
Diffstat (limited to 'content/module-mirror-launch.article')
-rw-r--r-- | content/module-mirror-launch.article | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/module-mirror-launch.article b/content/module-mirror-launch.article index 58b811a..391fa16 100644 --- a/content/module-mirror-launch.article +++ b/content/module-mirror-launch.article @@ -114,10 +114,10 @@ a specific version from one day to the next without the change being detected. If you are using Go 1.12 or earlier, you can manually check a `go.sum` file against the checksum database with -[[https://godoc.org/golang.org/x/exp/sumdb/gosumcheck][gosumcheck]]: +[[https://godoc.org/golang.org/x/mod/gosumcheck][gosumcheck]]: - go get golang.org/x/exp/sumdb/gosumcheck - gosumcheck /path/to/go.sum + $ go get golang.org/x/mod/gosumcheck + $ gosumcheck /path/to/go.sum In addition to verification done by the `go` command, third-party auditors can hold the checksum database accountable by iterating over the log |