Skip to content

Commit

Permalink
install ketch on apple m1 machines (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vivek Pandey authored Jul 23, 2021
1 parent 9d1a47d commit cb7de0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ getPlatform() {
case "${UNAME}" in
Darwin)
OSX_ARCH=$(uname -m)
if [ "${OSX_ARCH}" = "x86_64" ]; then
if [ "${OSX_ARCH}" = "x86_64" ] || [ "${OSX_ARCH}" = "arm64" ]; then
PLATFORM="darwin-amd64"
else
echo "Sorry, architecture not supported: ${OSX_ARCH}. Download binary from ${RELEASE_DOWNLOAD_URL}"
Expand Down

0 comments on commit cb7de0b

Please sign in to comment.