Commit 1c9ab8eb authored by deepj's avatar deepj
Browse files

Allow to install Artichoke's ARM builds on macOS

parent 5de6d5f5
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -3,8 +3,19 @@ Linux)
  install_package "artichoke-nightly" "https://github.com/artichoke/nightly/releases/latest/download/artichoke-nightly-x86_64-unknown-linux-gnu.tar.gz" artichoke
  ;;
Darwin)
  case $(uname -m) in
  arm64)
    install_package "artichoke-nightly" "https://github.com/artichoke/nightly/releases/latest/download/artichoke-nightly-aarch64-apple-darwin.tar.gz" artichoke
    ;;
  x86_64)
    install_package "artichoke-nightly" "https://github.com/artichoke/nightly/releases/latest/download/artichoke-nightly-x86_64-apple-darwin.tar.gz" artichoke
    ;;
  *)
    colorize 1 "Unsupported architecture: $(uname -m)"
    return 1
    ;;
  esac
  ;;
*)
  colorize 1 "Unsupported operating system: $(uname -s)"
  return 1