diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c3d9049..dbc56450 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ FIX: Document unique names FIX: reduce Docker image sizes (https://github.com/openziti/zrok/pull/783) +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. diff --git a/docs/guides/install/linux.mdx b/docs/guides/install/linux.mdx index f1cff6f2..b66131f2 100644 --- a/docs/guides/install/linux.mdx +++ b/docs/guides/install/linux.mdx @@ -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