Skip to content

Commit

Permalink
internal/dl: change GOARCH=arm64 pretty string ARMv8 → ARM64
Browse files Browse the repository at this point in the history
ARM64 makes for a better pretty string for the "arm64" architecture.
It's more clear that it's 64-bit, and it's closer to what we almost
always say.

Thanks to Cherry for making this suggestion.

For golang/go#38485.
For golang/go#36439.

Change-Id: I89c175ea2bafce6f191ae797ed982c73962ee5da
Reviewed-on: https://go-review.googlesource.com/c/website/+/344069
Trust: Dmitri Shuralyov <dmitshur@golang.org>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Heschi Kreinick <heschi@google.com>
  • Loading branch information
dmitshur committed Aug 23, 2021
1 parent 149d2a4 commit 0c7c710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/dl/dl.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ var prettyStrings = map[string]string{
"386": "x86",
"amd64": "x86-64",
"armv6l": "ARMv6",
"arm64": "ARMv8",
"arm64": "ARM64",

"archive": "Archive",
"installer": "Installer",
Expand Down

0 comments on commit 0c7c710

Please sign in to comment.