#!/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 warn() { printf '%s\n' "$*" >&2 } 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" else echo "tar.gz" fi } tar_supports_zstd() { if ! command -v zstd >/dev/null 2>&1; then false # tar is bsdtar elif tar --version | grep -q 'bsdtar'; then true # tar version is >= 1.31 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" current_version="v2026.6.2" current_version="${current_version#v}" # For current version use static checksum otherwise # use checksum from releases if [ "$version" = "$current_version" ]; then checksum_linux_x86_64="db2cd6e49a7e0177426123b655278de9f430c25991695c81a4dca51fba1d11c7 ./mise-v2026.6.2-linux-x64.tar.gz" checksum_linux_x86_64_musl="9d261aa1ef56d039db3b6bd3f86e6ef5ea9513daf05eaad44662ab8e943f5bd1 ./mise-v2026.6.2-linux-x64-musl.tar.gz" checksum_linux_arm64="cb83d052c07d460d70a85432cae038b1f534b7826d5eacff180ef66841c889ee ./mise-v2026.6.2-linux-arm64.tar.gz" checksum_linux_arm64_musl="4932a7c13f9d52b3653603a053e677af9cb231323856c505d3b481199a4e0489 ./mise-v2026.6.2-linux-arm64-musl.tar.gz" checksum_linux_armv7="32b3fa187c0c787b38f0feb54ead6ea832f1aae031c9438cde6bc0880bfaf167 ./mise-v2026.6.2-linux-armv7.tar.gz" checksum_linux_armv7_musl="e6288b066755df005e24d59d5d362c678270d2d7d6c041a52b42deff500d01fd ./mise-v2026.6.2-linux-armv7-musl.tar.gz" checksum_macos_x86_64="f9219e59287ed1f8549153254f5724d03b99d9e05979a72befdc510f7bd1865b ./mise-v2026.6.2-macos-x64.tar.gz" checksum_macos_arm64="e6a9df8516a6523eafe67d4ecd0331a425958a0e1725d7903ab448e04bd1e6c1 ./mise-v2026.6.2-macos-arm64.tar.gz" checksum_linux_x86_64_zstd="aa515947c853cb52296fad11fade8509db24e9efcbb3340ddd7b12ba1603e72a ./mise-v2026.6.2-linux-x64.tar.zst" checksum_linux_x86_64_musl_zstd="d55e0126507f1d9e10a2affa6ff8bbd0b996b5f45c0caa6686093dbe5fcfaf68 ./mise-v2026.6.2-linux-x64-musl.tar.zst" checksum_linux_arm64_zstd="1a1fed6876c971b7eb037f2e4645cec8680594a3adc74e2b38f3afe59ee41816 ./mise-v2026.6.2-linux-arm64.tar.zst" checksum_linux_arm64_musl_zstd="6efe3760a904334a3f28e22b3f99483753fcc6edd44f06e47510dbc6b1317ab6 ./mise-v2026.6.2-linux-arm64-musl.tar.zst" checksum_linux_armv7_zstd="53d861b27449b06fdc043d81ac0dac3e1a2a3d188722822d6c46d7e91bdd688c ./mise-v2026.6.2-linux-armv7.tar.zst" checksum_linux_armv7_musl_zstd="d5bff31cebd19baa07093989a25e576e79f631fcc08d3209b9def94d2227bcbc ./mise-v2026.6.2-linux-armv7-musl.tar.zst" checksum_macos_x86_64_zstd="66b531b27fe074f9255dd6fbd43b05332fee4e31db40e8a89f48d4b90504c45b ./mise-v2026.6.2-macos-x64.tar.zst" checksum_macos_arm64_zstd="5bb5e87015b03cca3cf5b07ff11b2dce789bb054d0bd99a2c10b4b1102359f27 ./mise-v2026.6.2-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.6.2}" version="${version#v}" current_version="v2026.6.2" current_version="${current_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" != "$current_version" ] || [ "$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.en.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 if [ -d "$install_path" ]; then error "MISE_INSTALL_PATH '$install_path' is a directory. Please set it to a file path, e.g. '$install_path/mise'." fi mkdir -p "$install_dir" rm -f "$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