Compare commits

...

1 Commits

Author SHA1 Message Date
Scott Miller a300a27672 fix: map arm64 to aarch64 for typos binary download
On macOS Apple Silicon, `uname -m` returns `arm64`, but typos release
assets use the Linux/LLVM naming convention `aarch64`. The Makefile was
passing the raw `uname -m` output into the download URL, producing a
filename that doesn't exist and causing a 404.
2026-04-08 13:34:42 -05:00
+3
View File
@@ -707,6 +707,9 @@ TYPOS_VERSION := $(shell grep -oP 'crate-ci/typos@\S+\s+\#\s+v\K[0-9.]+' .github
# Map uname values to typos release asset names.
TYPOS_ARCH := $(shell uname -m)
ifeq ($(TYPOS_ARCH),arm64)
TYPOS_ARCH := aarch64
endif
ifeq ($(shell uname -s),Darwin)
TYPOS_OS := apple-darwin
else