#!/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 libc=$(ldd /bin/ls | grep 'musl' | head -1 | cut -d ' ' -f1) if [ -n "$libc" ]; then musl="-musl" 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="$(get_os)" arch="$(get_arch)" ext="$(get_ext)" 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" = "v2025.7.16" ]; then checksum_linux_x86_64="510fa7e181bc39dcf7ae9f3496cf2fb477a59d32ed9dd899bda49f92a9300cbf ./mise-v2025.7.16-linux-x64.tar.gz" checksum_linux_x86_64_musl="b108875e29424d928cf71149acf2e0ba5b2d11658ee9db7e2b1b4191e7b652ad ./mise-v2025.7.16-linux-x64-musl.tar.gz" checksum_linux_arm64="f3877f2a02ed9bf36418cf8730d97d08ac24afb42f95c7b6c4d6e5312382c17a ./mise-v2025.7.16-linux-arm64.tar.gz" checksum_linux_arm64_musl="3283fec39d325b8a9362ebe9c5b95b02f4a406ffafe33409ff1c8b1412b39f5c ./mise-v2025.7.16-linux-arm64-musl.tar.gz" checksum_linux_armv7="fda3f77fff1c4d27c67ad2cf29a59d5e516c2c5a8fc538d8625138ac0cf35e7d ./mise-v2025.7.16-linux-armv7.tar.gz" checksum_linux_armv7_musl="5fe88e390d85832fb95ad6d500194603bc8a426658cd057989d4a6c8394551f8 ./mise-v2025.7.16-linux-armv7-musl.tar.gz" checksum_macos_x86_64="0e7ec24895047b22bc8bc3a3d5bc678b5a86056ae687bab40e9ee5eaf2483e60 ./mise-v2025.7.16-macos-x64.tar.gz" checksum_macos_arm64="dcb44b1c7be35b59c6fe8633538f2e433baf3da2a1dc1c61c89032d0608c1554 ./mise-v2025.7.16-macos-arm64.tar.gz" checksum_linux_x86_64_zstd="64f22ec3db974a659f143ad272fd75d91ad9b3891649f444ac4450343af1b919 ./mise-v2025.7.16-linux-x64.tar.zst" checksum_linux_x86_64_musl_zstd="f34fd31e53aff668a561045f27617c4d970d7bf7379f9b682910c39287423feb ./mise-v2025.7.16-linux-x64-musl.tar.zst" checksum_linux_arm64_zstd="f9527e9dda543975c85ccb11f800a6409fce4dd844f442f42914c374cfe4a65a ./mise-v2025.7.16-linux-arm64.tar.zst" checksum_linux_arm64_musl_zstd="b8e9560302b5f5ebeb74d13d0bc8f969ef94ff48e1cb5cab7a4cf1f2fff7705b ./mise-v2025.7.16-linux-arm64-musl.tar.zst" checksum_linux_armv7_zstd="1c5496184ef6da4230ed5277409d3c147396ed823f337c69aeb4c598ef2b7324 ./mise-v2025.7.16-linux-armv7.tar.zst" checksum_linux_armv7_musl_zstd="932bfc290e516f3e5c6cbd51698d74499a30e0b0b2bc642903981f8db7a9bdbc ./mise-v2025.7.16-linux-armv7-musl.tar.zst" checksum_macos_x86_64_zstd="25d29370e3bda71439d32df148d37886e5a08855deae07c62ab9c68f6a65f6d6 ./mise-v2025.7.16-macos-x64.tar.zst" checksum_macos_arm64_zstd="5d6de84b02201021f3616afafcef0186f8811a46efa9290d402cd00c1bd3dbe9 ./mise-v2025.7.16-macos-arm64.tar.zst" # TODO: refactor this, it's a bit messy if [ "$(get_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" stderr=$(mktemp) 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" filename="$(basename "$url")" cache_dir="$(mktemp -d)" file="$cache_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")" else error "mise standalone install requires curl or wget but neither is installed. Aborting." fi fi echo "$file" } install_mise() { version="${MISE_VERSION:-v2025.7.16}" version="${version#v}" os="$(get_os)" arch="$(get_arch)" ext="$(get_ext)" install_path="${MISE_INSTALL_PATH:-$HOME/.local/bin/mise}" install_dir="$(dirname "$install_path")" tarball_url="https://github.com/jdx/mise/releases/download/v${version}/mise-v${version}-${os}-${arch}.${ext}" cache_file=$(download_file "$tarball_url") debug "mise-setup: tarball=$cache_file" debug "validating checksum" cd "$(dirname "$cache_file")" && get_checksum "$version" | "$(shasum_bin)" -c >/dev/null # extract tarball mkdir -p "$install_dir" rm -rf "$install_path" cd "$(mktemp -d)" if [ "$(get_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" 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 setup 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 setup 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 setup correctly" ;; *) info "mise: run \`$install_path --help\` to get started" ;; esac } install_mise if [ "${MISE_INSTALL_HELP-}" != 0 ]; then after_finish_help fi