Skip to content

Commit

Permalink
fix: deb and rpm armv5
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Nov 14, 2021
1 parent 0292346 commit 1846234
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion apk/apk.go
Expand Up @@ -63,7 +63,6 @@ func init() {
var archToAlpine = map[string]string{
"386": "x86",
"amd64": "x86_64",
"arm": "armhf",
"arm6": "armhf",
"arm7": "armv7",
"arm64": "aarch64",
Expand Down
1 change: 1 addition & 0 deletions deb/deb.go
Expand Up @@ -35,6 +35,7 @@ func init() {
// nolint: gochecknoglobals
var archToDebian = map[string]string{
"386": "i386",
"arm5": "arm5",
"arm6": "armel",
"arm7": "armhf",
"mipsle": "mipsel",
Expand Down
1 change: 1 addition & 0 deletions rpm/rpm.go
Expand Up @@ -61,6 +61,7 @@ var archToRPM = map[string]string{
"amd64": "x86_64",
"386": "i386",
"arm64": "aarch64",
"arm5": "armv5tel",
"arm6": "armv6hl",
"arm7": "armv7hl",
"mips": "mips",
Expand Down

0 comments on commit 1846234

Please sign in to comment.