#!/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 } unsupported_arch() { arch="$1" warn "unsupported architecture: $arch" warn "" warn "mise does not provide prebuilt binaries for this platform." warn "If Rust/Cargo is available, install from source with:" warn " cargo install --locked mise" 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 unsupported_arch "$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 # busybox tar reports a "1.3x" version that matches the GNU check below, but it # cannot decompress .tar.zst itself. Detect it so we fall back to the zstd pipe # (or a .tar.gz download) instead of running `tar -xf` on a zstd tarball. elif tar --version 2>&1 | grep -qi 'busybox'; then false # 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.7.4" 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="4de4203579ba9f83ae26561190f2f6b46f41860117e43c4cd6adf4d5100a961d ./mise-v2026.7.4-linux-x64.tar.gz" checksum_linux_x86_64_musl="4898a5e0ac9da622094d056b5a7503f1269293020d9890ca12b1105f17dc6e82 ./mise-v2026.7.4-linux-x64-musl.tar.gz" checksum_linux_arm64="7a59e36862b64596ca9f8693859b41706a8989841e178f7b9da5ed75554da8cb ./mise-v2026.7.4-linux-arm64.tar.gz" checksum_linux_arm64_musl="81a947532a1b373aaa0302d0ae67b65db9ced115c24f5a628e89508229c517ff ./mise-v2026.7.4-linux-arm64-musl.tar.gz" checksum_linux_armv7="c4de693e1fad21ad82b375f15f03471919603e3e67ca91b9129f869aeb64d366 ./mise-v2026.7.4-linux-armv7.tar.gz" checksum_linux_armv7_musl="fc6ba2a9cdb9b6488b5b1de53cfac75efc8dc251e07d371cdb5a594e48e6136a ./mise-v2026.7.4-linux-armv7-musl.tar.gz" checksum_macos_x86_64="405d7ce976b43d2de69e46097e18f48c6111ba0c9e12c8d668ba4dbc6d3ab523 ./mise-v2026.7.4-macos-x64.tar.gz" checksum_macos_arm64="9e8817b7130d98cc2e8a00c2557673d1456d48319e2e31ae4bc7b06d50c4d7f2 ./mise-v2026.7.4-macos-arm64.tar.gz" checksum_linux_x86_64_zstd="1192c0bea43a86b7f79043acbc39a7ee1cb75cd47b78dab45a886624ef6ab36e ./mise-v2026.7.4-linux-x64.tar.zst" checksum_linux_x86_64_musl_zstd="592912358c19a18b28f1a433843e43a4d90dab25945bd027982051ba8a3853c6 ./mise-v2026.7.4-linux-x64-musl.tar.zst" checksum_linux_arm64_zstd="483e2b58fb03ab4732402e94d1e2e4e7d08a908bcba7cad346f53521695fecb0 ./mise-v2026.7.4-linux-arm64.tar.zst" checksum_linux_arm64_musl_zstd="d66e7dd26b48111ace70e619cb7c4b9807749d0bb313bf6c9ca678c8ea96c8e6 ./mise-v2026.7.4-linux-arm64-musl.tar.zst" checksum_linux_armv7_zstd="a8263973237c2388d53ee555b5285bbb4ecba1689f54c3fd3f4e3130b35e1c78 ./mise-v2026.7.4-linux-armv7.tar.zst" checksum_linux_armv7_musl_zstd="b1375ced607762de34019a41913b62a6575784c2c31e9be47883bf125459ac32 ./mise-v2026.7.4-linux-armv7-musl.tar.zst" checksum_macos_x86_64_zstd="c6f0438782c3ef6c79c388feeae689f51962de454965b9d6f1f804c70afc6301 ./mise-v2026.7.4-macos-x64.tar.zst" checksum_macos_arm64_zstd="fcf1ae37a1e96ae6674480e1578dcc7fd2cf7ab12ac78ab7bc6d04e99fe74c52 ./mise-v2026.7.4-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" } # Prints the version of an installed mise binary (the first field of # `mise version`, e.g. "2025.6.0"), with any leading "v" stripped. Prints # nothing if the binary is missing or fails to report a version. installed_mise_version() { bin="$1" if [ -x "$bin" ]; then installed_version="$("$bin" version 2>/dev/null | head -n1 | cut -d' ' -f1)" echo "${installed_version#v}" fi } install_mise() { version="${MISE_VERSION:-v2026.7.4}" version="${version#v}" current_version="v2026.7.4" 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:-}" # Opt-in: skip the download/install if the binary already at the install # path matches the requested version. Only the install path is checked (not # the wider PATH) so that skipping never leaves install_path missing. skip_if_exists="${MISE_INSTALL_SKIP_IF_EXISTS-}" if [ "$skip_if_exists" = "1" ] || [ "$skip_if_exists" = "true" ]; then if [ -x "$install_path" ]; then existing_version="$(installed_mise_version "$install_path")" if [ -n "$existing_version" ] && [ "$existing_version" = "$version" ]; then info "mise: $install_path is already at version $version, skipping install" return 0 fi fi fi 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.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 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 --no-same-owner -xf - else tar --no-same-owner -xf "$cache_file" fi if [ "$(id -u)" = "0" ]; then chown 0:0 mise/bin/mise chmod 755 mise/bin/mise 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