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

Commit 7090c07

Browse files
committed
Fix wrong label in downloads.list
1 parent 5caead1 commit 7090c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/downloads.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func listRemoteTarballs(cmd *cobra.Command, args []string) {
207207
cells = append(cells, &simpletable.Cell{Text: tb.Name})
208208
}
209209
archText := tb.Arch
210-
if archText == "arm64" {
210+
if archText == "amd64" {
211211
archText = "x86_64"
212212
}
213213
cells = append(cells, &simpletable.Cell{Text: tb.OperatingSystem + "-" + archText})

0 commit comments

Comments
 (0)