Skip to content

Commit ace5ced

Browse files
committed
chore: fix install script
1 parent 9e0fe46 commit ace5ced

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

install-misspell.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ is_supported_platform() {
6363
darwin/amd64) found=0 ;;
6464
linux/amd64) found=0 ;;
6565
windows/amd64) found=0 ;;
66+
darwin/arm64) found=0 ;;
67+
linux/arm64) found=0 ;;
6668
esac
6769
case "$platform" in
6870
darwin/386) found=1 ;;
@@ -95,7 +97,8 @@ adjust_os() {
9597
# adjust archive name based on OS
9698
case ${OS} in
9799
386) OS=32bit ;;
98-
amd64) OS=64bit ;;
100+
amd64) OS=amd64 ;;
101+
arm64) OS=64bit ;;
99102
darwin) OS=mac ;;
100103
esac
101104
true

0 commit comments

Comments
 (0)