Skip to main content
Glama
by mckinsey
install-hatch.sh2.42 kB
#!/usr/bin/env bash # Taken from https://github.com/pypa/hatch/tree/install with the following changes: # - remove GITHUB_PATH and RUNNER_TOOL_CACHE # - set the following variables VERSION="latest" INSTALL_PATH="/usr/local/bin" RUNNER_OS="Linux" RUNNER_ARCH="X64" set -euo pipefail IFS=$'\n\t' PURPLE="\033[1;35m" RESET="\033[0m" # This and many of the following conditionals are irrelevant given the above setting # of variables, but the code is left here to be consistent with the original source. if [[ "${RUNNER_OS}" == "Windows" ]]; then SEP="\\" else SEP="/" fi install_hatch() { mkdir -p "${INSTALL_PATH}" archive="${INSTALL_PATH}${SEP}$1" echo -e "${PURPLE}Downloading Hatch ${VERSION}${RESET}\n" if [[ "${VERSION}" == "latest" ]]; then curl -sSLo "${archive}" "https://github.com/pypa/hatch/releases/latest/download/$1" else curl -sSLo "${archive}" "https://github.com/pypa/hatch/releases/download/hatch-v${VERSION}/$1" fi if [[ "${archive}" =~ \.zip$ ]]; then if [[ "${RUNNER_OS}" == "Windows" ]]; then 7z -bso0 -bsp0 x "${archive}" -o"${INSTALL_PATH}" else unzip "${archive}" -d "${INSTALL_PATH}" fi else tar -xzf "${archive}" -C "${INSTALL_PATH}" fi rm "${archive}" echo -e "${PURPLE}Installing Hatch ${VERSION}${RESET}" "${INSTALL_PATH}${SEP}hatch" --version "${INSTALL_PATH}${SEP}hatch" self cache dist --remove } fallback_install_hatch() { echo -e "${PURPLE}Installing Hatch ${VERSION}${RESET}" if [[ "${VERSION}" == "latest" ]]; then pipx install --pip-args=--upgrade hatch else pipx install "hatch==${VERSION}" fi hatch --version } if [[ "${RUNNER_OS}" == "Linux" ]]; then if [[ "${RUNNER_ARCH}" == "X64" ]]; then install_hatch "hatch-x86_64-unknown-linux-gnu.tar.gz" elif [[ "${RUNNER_ARCH}" == "ARM64" ]]; then install_hatch "hatch-aarch64-unknown-linux-gnu.tar.gz" else fallback_install_hatch fi elif [[ "${RUNNER_OS}" == "Windows" ]]; then if [[ "${RUNNER_ARCH}" == "X64" ]]; then install_hatch "hatch-x86_64-pc-windows-msvc.zip" else fallback_install_hatch fi elif [[ "${RUNNER_OS}" == "macOS" ]]; then if [[ "${RUNNER_ARCH}" == "ARM64" ]]; then install_hatch "hatch-aarch64-apple-darwin.tar.gz" elif [[ "${RUNNER_ARCH}" == "X64" ]]; then install_hatch "hatch-x86_64-apple-darwin.tar.gz" else fallback_install_hatch fi else fallback_install_hatch fi

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mckinsey/vizro'

If you have feedback or need assistance with the MCP directory API, please join our Discord server