fix(release): avoid duplicate ARM archives (#1884)

This commit is contained in:
henrygd
2026-08-17 16:49:59 -04:00
parent 19f250c7de
commit 2054b276a7
4 changed files with 46 additions and 7 deletions

View File

@@ -215,9 +215,15 @@ detect_architecture() {
x86_64)
arch="amd64"
;;
armv6l|armv7l)
armv5*)
arch="armv5"
;;
armv6l)
arch="arm"
;;
armv7l)
arch="armv7"
;;
aarch64)
arch="arm64"
;;