Skip to content

Commit

Permalink
Add arm64 to installer script (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
caitlinelfring committed Jun 15, 2022
1 parent 68daeec commit 4cc10d8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,13 @@ get_binaries() {
case "$PLATFORM" in
darwin/386) BINARIES="woke" ;;
darwin/amd64) BINARIES="woke" ;;
darwin/arm64) BINARIES="woke" ;;
linux/386) BINARIES="woke" ;;
linux/amd64) BINARIES="woke" ;;
linux/arm64) BINARIES="woke" ;;
windows/386) BINARIES="woke" ;;
windows/amd64) BINARIES="woke" ;;
windows/arm64) BINARIES="woke" ;;
*)
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"
exit 1
Expand Down

0 comments on commit 4cc10d8

Please sign in to comment.