Skip to content

Commit

Permalink
support arm64 in install.sh (#55)
Browse files Browse the repository at this point in the history
Signed-off-by: Weston Steimel <[email protected]>
  • Loading branch information
westonsteimel authored Jan 25, 2022
1 parent 0b498e6 commit a9ab612
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ execute() {
get_binaries() {
case "$PLATFORM" in
darwin/amd64) BINARIES="kai" ;;
darwin/arm64) BINARIES="kai" ;;
linux/amd64) BINARIES="kai" ;;
linux/arm64) BINARIES="kai" ;;
windows/amd64) BINARIES="kai" ;;
*)
log_crit "platform $PLATFORM is not supported. Make sure this script is up-to-date and file request at https://github.com/${PREFIX}/issues/new"
Expand Down

0 comments on commit a9ab612

Please sign in to comment.