Skip to content

Commit

Permalink
chore: fix install script
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Oct 11, 2022
1 parent 9e0fe46 commit ace5ced
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion install-misspell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ is_supported_platform() {
darwin/amd64) found=0 ;;
linux/amd64) found=0 ;;
windows/amd64) found=0 ;;
darwin/arm64) found=0 ;;
linux/arm64) found=0 ;;
esac
case "$platform" in
darwin/386) found=1 ;;
Expand Down Expand Up @@ -95,7 +97,8 @@ adjust_os() {
# adjust archive name based on OS
case ${OS} in
386) OS=32bit ;;
amd64) OS=64bit ;;
amd64) OS=amd64 ;;
arm64) OS=64bit ;;
darwin) OS=mac ;;
esac
true
Expand Down

0 comments on commit ace5ced

Please sign in to comment.