#!/bin/sh set -eu #region logging setup if [ "${MISE_DEBUG-}" = "true" ] || [ "${MISE_DEBUG-}" = "1" ]; then debug() { echo "$@" >&2 } else debug() { : } fi if [ "${MISE_QUIET-}" = "1" ] || [ "${MISE_QUIET-}" = "true" ]; then info() { : } else info() { echo "$@" >&2 } fi error() { echo "$@" >&2 exit 1 } #endregion #region environment setup get_os() { os="$(uname -s)" if [ "$os" = Darwin ]; then echo "macos" elif [ "$os" = Linux ]; then echo "linux" else error "unsupported OS: $os" fi } get_arch() { musl="" if type ldd >/dev/null 2>/dev/null; then if [ "${MISE_INSTALL_MUSL-}" = "1" ] || [ "${MISE_INSTALL_MUSL-}" = "true" ]; then musl="-musl" elif [ "$(uname -o)" = "Android" ]; then # Android (Termux) always uses musl musl="-musl" else libc=$(ldd /bin/ls | grep 'musl' | head -1 | cut -d ' ' -f1) if [ -n "$libc" ]; then musl="-musl" fi fi fi arch="$(uname -m)" if [ "$arch" = x86_64 ]; then echo "x64$musl" elif [ "$arch" = aarch64 ] || [ "$arch" = arm64 ]; then echo "arm64$musl" elif [ "$arch" = armv7l ]; then echo "armv7$musl" else error "unsupported architecture: $arch" fi } get_ext() { if [ -n "${MISE_INSTALL_EXT:-}" ]; then echo "$MISE_INSTALL_EXT" elif [ -n "${MISE_VERSION:-}" ] && echo "$MISE_VERSION" | grep -q '^v2024'; then # 2024 versions don't have zstd tarballs echo "tar.gz" elif tar_supports_zstd; then echo "tar.zst" elif command -v zstd >/dev/null 2>&1; then echo "tar.zst" else echo "tar.gz" fi } tar_supports_zstd() { # tar is bsdtar or version is >= 1.31 if tar --version | grep -q 'bsdtar' && command -v zstd >/dev/null 2>&1; then true elif tar --version | grep -q '1\.(3[1-9]|[4-9][0-9]'; then true else false fi } shasum_bin() { if command -v shasum >/dev/null 2>&1; then echo "shasum" elif command -v sha256sum >/dev/null 2>&1; then echo "sha256sum" else error "mise install requires shasum or sha256sum but neither is installed. Aborting." fi } get_checksum() { version=$1 os=$2 arch=$3 ext=$4 url="https://github.com/jdx/mise/releases/download/v${version}/SHASUMS256.txt" # For current version use static checksum otherwise # use checksum from releases if [ "$version" = "v2026.2.18" ]; then checksum_linux_x86_64="202b4d36952d04e3ef32252f37b78765f87d14fd2cc7c18048910058538bc92e ./mise-v2026.2.18-linux-x64.tar.gz" checksum_linux_x86_64_musl="2173fb6205e39ec3e39b5d9a6367f9a8dde5f4c474fe633e70595f692c609d99 ./mise-v2026.2.18-linux-x64-musl.tar.gz" checksum_linux_arm64="4428a0bf8c9c5a5f2c7a3f7fa2e8b62adaf4a4c5fd9fd39ea31796b37e46ab51 ./mise-v2026.2.18-linux-arm64.tar.gz" checksum_linux_arm64_musl="71f1afc47322b787d9f0f74420581437e6dbd902e83b93ff1ec40de6da31bd02 ./mise-v2026.2.18-linux-arm64-musl.tar.gz" checksum_linux_armv7="cb4d1936f3d0cd4be74afb1c9cc877d5522eb267fd6f1bbb6257f0c9f31a8881 ./mise-v2026.2.18-linux-armv7.tar.gz" checksum_linux_armv7_musl="351c6c31028424ae321b873a978fb7d6926dbd69a35387bd390a6222193041cb ./mise-v2026.2.18-linux-armv7-musl.tar.gz" checksum_macos_x86_64="9c013f506ee64d462ca5e8a627172fe3ce5de9b3083e3a44a1ad6475581d2603 ./mise-v2026.2.18-macos-x64.tar.gz" checksum_macos_arm64="ab6c550588c087852804bc0790ba596dc11ac87be83c56f80f11f189962df555 ./mise-v2026.2.18-macos-arm64.tar.gz" checksum_linux_x86_64_zstd="a89fa1934087f1568e68a8761f098a2643d0968c8170482bc8db0219b111d6e9 ./mise-v2026.2.18-linux-x64.tar.zst" checksum_linux_x86_64_musl_zstd="8d81a28dc99660f70b4065903318945bc78869d700a67e21577bbb11d0494b9b ./mise-v2026.2.18-linux-x64-musl.tar.zst" checksum_linux_arm64_zstd="b1b1fff425bc38d14ebbcb177876522e3e27b7515b903a38096091aa6c12c0db ./mise-v2026.2.18-linux-arm64.tar.zst" checksum_linux_arm64_musl_zstd="f826a06149ad9e2bc044fc6009b78e9d24f6c2e77d7d8a51780f60cc138d2136 ./mise-v2026.2.18-linux-arm64-musl.tar.zst" checksum_linux_armv7_zstd="e3fe85045f3c6bd0eafa228cc21fe68f47a90c2de7acd03eae4fd78428188c86 ./mise-v2026.2.18-linux-armv7.tar.zst" checksum_linux_armv7_musl_zstd="6cae4eabbe38f7137e8f13b0ed430c41b84434d7a2ce629bb493085ecf5674c8 ./mise-v2026.2.18-linux-armv7-musl.tar.zst" checksum_macos_x86_64_zstd="9c5039468faf2390bc168a3a8fbef027ba1a86bb45e6f4ba165ae4f6f2ba4654 ./mise-v2026.2.18-macos-x64.tar.zst" checksum_macos_arm64_zstd="51da03fd0f93b7ad5f0776d5ab43283e9894b9bd1764a5e2f03edb742fbb3ac9 ./mise-v2026.2.18-macos-arm64.tar.zst" # TODO: refactor this, it's a bit messy if [ "$ext" = "tar.zst" ]; then if [ "$os" = "linux" ]; then if [ "$arch" = "x64" ]; then echo "$checksum_linux_x86_64_zstd" elif [ "$arch" = "x64-musl" ]; then echo "$checksum_linux_x86_64_musl_zstd" elif [ "$arch" = "arm64" ]; then echo "$checksum_linux_arm64_zstd" elif [ "$arch" = "arm64-musl" ]; then echo "$checksum_linux_arm64_musl_zstd" elif [ "$arch" = "armv7" ]; then echo "$checksum_linux_armv7_zstd" elif [ "$arch" = "armv7-musl" ]; then echo "$checksum_linux_armv7_musl_zstd" else warn "no checksum for $os-$arch" fi elif [ "$os" = "macos" ]; then if [ "$arch" = "x64" ]; then echo "$checksum_macos_x86_64_zstd" elif [ "$arch" = "arm64" ]; then echo "$checksum_macos_arm64_zstd" else warn "no checksum for $os-$arch" fi else warn "no checksum for $os-$arch" fi else if [ "$os" = "linux" ]; then if [ "$arch" = "x64" ]; then echo "$checksum_linux_x86_64" elif [ "$arch" = "x64-musl" ]; then echo "$checksum_linux_x86_64_musl" elif [ "$arch" = "arm64" ]; then echo "$checksum_linux_arm64" elif [ "$arch" = "arm64-musl" ]; then echo "$checksum_linux_arm64_musl" elif [ "$arch" = "armv7" ]; then echo "$checksum_linux_armv7" elif [ "$arch" = "armv7-musl" ]; then echo "$checksum_linux_armv7_musl" else warn "no checksum for $os-$arch" fi elif [ "$os" = "macos" ]; then if [ "$arch" = "x64" ]; then echo "$checksum_macos_x86_64" elif [ "$arch" = "arm64" ]; then echo "$checksum_macos_arm64" else warn "no checksum for $os-$arch" fi else warn "no checksum for $os-$arch" fi fi else if command -v curl >/dev/null 2>&1; then debug ">" curl -fsSL "$url" checksums="$(curl --compressed -fsSL "$url")" else if command -v wget >/dev/null 2>&1; then debug ">" wget -qO - "$url" checksums="$(wget -qO - "$url")" else error "mise standalone install specific version requires curl or wget but neither is installed. Aborting." fi fi # TODO: verify with minisign or gpg if available checksum="$(echo "$checksums" | grep "$os-$arch.$ext")" if ! echo "$checksum" | grep -Eq "^([0-9a-f]{32}|[0-9a-f]{64})"; then warn "no checksum for mise $version and $os-$arch" else echo "$checksum" fi fi } #endregion download_file() { url="$1" download_dir="$2" filename="$(basename "$url")" file="$download_dir/$filename" info "mise: installing mise..." if command -v curl >/dev/null 2>&1; then debug ">" curl -#fLo "$file" "$url" curl -#fLo "$file" "$url" else if command -v wget >/dev/null 2>&1; then debug ">" wget -qO "$file" "$url" stderr=$(mktemp) wget -O "$file" "$url" >"$stderr" 2>&1 || error "wget failed: $(cat "$stderr")" rm "$stderr" else error "mise standalone install requires curl or wget but neither is installed. Aborting." fi fi echo "$file" } install_mise() { version="${MISE_VERSION:-v2026.2.18}" version="${version#v}" os="${MISE_INSTALL_OS:-$(get_os)}" arch="${MISE_INSTALL_ARCH:-$(get_arch)}" ext="${MISE_INSTALL_EXT:-$(get_ext)}" install_path="${MISE_INSTALL_PATH:-$HOME/.local/bin/mise}" install_dir="$(dirname "$install_path")" install_from_github="${MISE_INSTALL_FROM_GITHUB:-}" if [ "$version" != "v2026.2.18" ] || [ "$install_from_github" = "1" ] || [ "$install_from_github" = "true" ]; then tarball_url="https://github.com/jdx/mise/releases/download/v${version}/mise-v${version}-${os}-${arch}.${ext}" elif [ -n "${MISE_TARBALL_URL-}" ]; then tarball_url="$MISE_TARBALL_URL" else tarball_url="https://mise.jdx.dev/v${version}/mise-v${version}-${os}-${arch}.${ext}" fi download_dir="$(mktemp -d)" cache_file=$(download_file "$tarball_url" "$download_dir") debug "mise-setup: tarball=$cache_file" debug "validating checksum" cd "$(dirname "$cache_file")" && get_checksum "$version" "$os" "$arch" "$ext" | "$(shasum_bin)" -c >/dev/null # extract tarball mkdir -p "$install_dir" rm -rf "$install_path" extract_dir="$(mktemp -d)" cd "$extract_dir" if [ "$ext" = "tar.zst" ] && ! tar_supports_zstd; then zstd -d -c "$cache_file" | tar -xf - else tar -xf "$cache_file" fi mv mise/bin/mise "$install_path" # cleanup cd / # Move out of $extract_dir before removing it rm -rf "$download_dir" rm -rf "$extract_dir" info "mise: installed successfully to $install_path" } after_finish_help() { case "${SHELL:-}" in */zsh) info "mise: run the following to activate mise in your shell:" info "echo \"eval \\\"\\\$($install_path activate zsh)\\\"\" >> \"${ZDOTDIR-$HOME}/.zshrc\"" info "" info "mise: run \`mise doctor\` to verify this is set up correctly" ;; */bash) info "mise: run the following to activate mise in your shell:" info "echo \"eval \\\"\\\$($install_path activate bash)\\\"\" >> ~/.bashrc" info "" info "mise: run \`mise doctor\` to verify this is set up correctly" ;; */fish) info "mise: run the following to activate mise in your shell:" info "echo \"$install_path activate fish | source\" >> ~/.config/fish/config.fish" info "" info "mise: run \`mise doctor\` to verify this is set up correctly" ;; *) info "mise: run \`$install_path --help\` to get started" ;; esac } install_mise if [ "${MISE_INSTALL_HELP-}" != 0 ]; then after_finish_help fi