Last active
August 2, 2024 08:25
-
-
Save Tobi-De/4cc0c1cabbb4c31ffbf102913a841026 to your computer and use it in GitHub Desktop.
Install hatch script by @cofin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Original https://github.com/litestar-org/pytest-databases/blob/main/scripts/install-hatch.sh | |
# --- Constants --- | |
BASE_URL="https://github.com/pypa/hatch/releases/latest/download" | |
EXTRACT_CMD="tar -xzf" | |
# --- Handle Optional Installation Directory --- | |
INSTALL_DIR="$1" # Default: current directory | |
if [[ -n "$INSTALL_DIR" ]]; then | |
if [[ ! -d "$INSTALL_DIR" ]]; then # Check if directory exists | |
INSTALL_DIR="$HOME/.local/bin" | |
echo "Error: Invalid install directory '$INSTALL_DIR'" | |
exit 1 | |
fi | |
INSTALL_DIR=$(realpath "$INSTALL_DIR") # Get absolute path | |
fi | |
# --- Determine Platform --- | |
PLATFORM=$(uname -s) | |
MACHINE=$(uname -m) | |
FILE_EXT="tar.gz" | |
if [[ $PLATFORM == "Darwin" ]]; then | |
PLATFORM_NAME="apple-darwin" | |
elif [[ $PLATFORM == "Linux" ]]; then | |
PLATFORM_NAME="unknown-linux-gnu" | |
if [[ $MACHINE == "aarch64" ]]; then | |
MACHINE="aarch64" | |
fi | |
elif [[ $PLATFORM == "Windows" ]]; then | |
PLATFORM_NAME="pc-windows-msvc" | |
FILE_EXT="zip" | |
EXTRACT_CMD="unzip" | |
else | |
echo "Unsupported platform: $PLATFORM" | |
exit 1 | |
fi | |
# --- Construct File Name and URL --- | |
FILENAME="hatch-$MACHINE-$PLATFORM_NAME.$FILE_EXT" | |
URL="$BASE_URL/$FILENAME" | |
# --- Download and Extract --- | |
echo "Downloading Hatch binary: $FILENAME" | |
curl -L -o "$FILENAME" "$URL" | |
echo "Extracting to '$INSTALL_DIR'..." | |
$EXTRACT_CMD "$FILENAME" -C "$INSTALL_DIR" # Extract to install directory | |
rm "$FILENAME" # Remove archive | |
HATCH_BINARY="$INSTALL_DIR/hatch" # Path to the extracted binary | |
if [[ -x "$HATCH_BINARY" ]]; then | |
echo "Hatch binary successfully installed at '$HATCH_BINARY'" | |
else | |
echo "Error: Hatch binary not found or not executable." | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment