Skip to content
This repository has been archived by the owner on Oct 29, 2023. It is now read-only.

Commit

Permalink
Fix wrong label in downloads.list
Browse files Browse the repository at this point in the history
  • Loading branch information
datacharmer committed Aug 16, 2022
1 parent 5caead1 commit 7090c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/downloads.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func listRemoteTarballs(cmd *cobra.Command, args []string) {
cells = append(cells, &simpletable.Cell{Text: tb.Name})
}
archText := tb.Arch
if archText == "arm64" {
if archText == "amd64" {
archText = "x86_64"
}
cells = append(cells, &simpletable.Cell{Text: tb.OperatingSystem + "-" + archText})
Expand Down

0 comments on commit 7090c07

Please sign in to comment.