Skip to content

Commit

Permalink
fix: deb on arm5 and arm6 (#412)
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
  • Loading branch information
caarlos0 committed Dec 4, 2021
1 parent 206d797 commit a261112
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deb/deb.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ func init() {
// nolint: gochecknoglobals
var archToDebian = map[string]string{
"386": "i386",
"arm5": "arm5",
"arm6": "armel",
"arm5": "armel",
"arm6": "armhf",
"arm7": "armhf",
"mipsle": "mipsel",
"mips64le": "mips64el",
Expand Down

0 comments on commit a261112

Please sign in to comment.