Merge pull request #784 from openziti/782-releases-url-returns-to-404-on-32bit-raspberry-pi-using-the-install-script

fix RasPi armv7 download URL
This commit is contained in:
Kenneth Bingham 2024-11-05 14:44:01 -05:00 committed by GitHub
commit ef3ddd3563
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@
FIX: Document unique names
FIX: Correct the download URL for the armv7 Linux release (https://github.com/openziti/zrok/issues/782)
## v0.4.44
FIX: Fix for goreleaser build action to align with changed ARM64 build path.

View File

@ -79,7 +79,7 @@ case $(uname -m) in
;;
aarch64|arm64) GOXARCH=arm64
;;
arm*) GOXARCH=arm
arm*) GOXARCH=armv7
;;
*) echo "ERROR: unknown arch '$(uname -m)'" >&2
exit 1