mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-01 13:07:49 +02:00
Revert "fix: armv7 on linux is usually armv7l"
This reverts commit d7e1bcc1f069bc294abe9032c9209f271dc60745.
This commit is contained in:
parent
a94e28b77c
commit
1e718d2db0
@ -20,7 +20,7 @@ func Arch(key string) string {
|
||||
case "arm6": // GOARCH + GOARM
|
||||
return "armhf"
|
||||
case "arm7": // GOARCH + GOARM
|
||||
return "armv7l"
|
||||
return "armhf"
|
||||
case "mips64le":
|
||||
return "mips64el"
|
||||
case "mipsle":
|
||||
|
@ -14,7 +14,7 @@ func TestArch(t *testing.T) {
|
||||
"linuxarm64": "arm64",
|
||||
"linuxarm5": "armel",
|
||||
"linuxarm6": "armhf",
|
||||
"linuxarm7": "armv7l",
|
||||
"linuxarm7": "armhf",
|
||||
"linuxppc64": "ppc64",
|
||||
"linuxppc64le": "ppc64le",
|
||||
"linuxwhat": "what",
|
||||
|
Loading…
x
Reference in New Issue
Block a user