You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
4.0 KiB
149 lines
4.0 KiB
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Colors for output
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
BLUE='\033[0;36m'
|
|
YELLOW='\033[0;33m'
|
|
NC='\033[0m'
|
|
|
|
# Temporary directory for downloads
|
|
TMP_DIR=$(mktemp -d)
|
|
trap 'rm -rf "$TMP_DIR"' EXIT
|
|
|
|
# Detect system information
|
|
detect_system() {
|
|
local os arch suffix
|
|
|
|
case "$(uname -s)" in
|
|
Linux*) os="linux";;
|
|
Darwin*) os="darwin";;
|
|
*) echo -e "${RED}Unsupported OS${NC}"; exit 1;;
|
|
esac
|
|
|
|
case "$(uname -m)" in
|
|
x86_64)
|
|
arch="x64"
|
|
[ "$os" = "darwin" ] && suffix="_intel"
|
|
;;
|
|
aarch64|arm64)
|
|
arch="arm64"
|
|
[ "$os" = "darwin" ] && suffix="_apple_silicon"
|
|
;;
|
|
i386|i686)
|
|
arch="x86"
|
|
[ "$os" = "darwin" ] && { echo -e "${RED}32-bit not supported on macOS${NC}"; exit 1; }
|
|
;;
|
|
*) echo -e "${RED}Unsupported architecture${NC}"; exit 1;;
|
|
esac
|
|
|
|
echo "$os $arch $suffix"
|
|
}
|
|
|
|
# Download with progress using curl or wget
|
|
download() {
|
|
local url="$1"
|
|
local output="$2"
|
|
|
|
if command -v curl >/dev/null 2>&1; then
|
|
curl -#L "$url" -o "$output"
|
|
elif command -v wget >/dev/null 2>&1; then
|
|
wget --show-progress -q "$url" -O "$output"
|
|
else
|
|
echo -e "${RED}Error: curl or wget is required${NC}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Check and create installation directory
|
|
setup_install_dir() {
|
|
local install_dir="$1"
|
|
|
|
if [ ! -d "$install_dir" ]; then
|
|
mkdir -p "$install_dir" || {
|
|
echo -e "${RED}Failed to create installation directory${NC}"
|
|
exit 1
|
|
}
|
|
fi
|
|
}
|
|
|
|
# Find matching asset from release
|
|
find_asset() {
|
|
local json="$1"
|
|
local os="$2"
|
|
local arch="$3"
|
|
local suffix="$4"
|
|
|
|
# Try possible binary names
|
|
local binary_names=(
|
|
"cursor-id-modifier_${os}_${arch}${suffix}" # lowercase os
|
|
"cursor-id-modifier_$(tr '[:lower:]' '[:upper:]' <<< ${os:0:1})${os:1}_${arch}${suffix}" # capitalized os
|
|
)
|
|
|
|
local url=""
|
|
for name in "${binary_names[@]}"; do
|
|
echo -e "${BLUE}Looking for asset: $name${NC}"
|
|
url=$(echo "$json" | grep -o "\"browser_download_url\": \"[^\"]*${name}\"" | cut -d'"' -f4)
|
|
if [ -n "$url" ]; then
|
|
echo -e "${GREEN}Found matching asset: $name${NC}"
|
|
echo "$url"
|
|
return 0
|
|
fi
|
|
done
|
|
|
|
# If no match found, show available assets
|
|
echo -e "${YELLOW}Available assets:${NC}"
|
|
echo "$json" | grep "\"name\":" | cut -d'"' -f4
|
|
return 1
|
|
}
|
|
|
|
# Main installation function
|
|
main() {
|
|
echo -e "${BLUE}Starting installation...${NC}"
|
|
|
|
# Detect system
|
|
read -r OS ARCH SUFFIX <<< "$(detect_system)"
|
|
echo -e "${GREEN}Detected: $OS $ARCH${NC}"
|
|
|
|
# Set installation directory
|
|
INSTALL_DIR="/usr/local/bin"
|
|
[ "$OS" = "darwin" ] && INSTALL_DIR="/usr/local/bin"
|
|
|
|
# Setup installation directory
|
|
setup_install_dir "$INSTALL_DIR"
|
|
|
|
# Get latest release info
|
|
echo -e "${BLUE}Fetching latest release information...${NC}"
|
|
LATEST_URL="https://api.github.com/repos/dacrab/go-cursor-help/releases/latest"
|
|
RELEASE_JSON=$(curl -s "$LATEST_URL")
|
|
|
|
# Find matching asset
|
|
DOWNLOAD_URL=$(find_asset "$RELEASE_JSON" "$OS" "$ARCH" "$SUFFIX")
|
|
|
|
if [ -z "$DOWNLOAD_URL" ]; then
|
|
echo -e "${RED}Error: Could not find appropriate binary for $OS $ARCH${NC}"
|
|
exit 1
|
|
fi
|
|
|
|
echo -e "${BLUE}Downloading latest release...${NC}"
|
|
download "$DOWNLOAD_URL" "$TMP_DIR/cursor-id-modifier"
|
|
|
|
# Install binary
|
|
echo -e "${BLUE}Installing...${NC}"
|
|
chmod +x "$TMP_DIR/cursor-id-modifier"
|
|
sudo mv "$TMP_DIR/cursor-id-modifier" "$INSTALL_DIR/"
|
|
|
|
echo -e "${GREEN}Installation completed successfully!${NC}"
|
|
echo -e "${BLUE}Running cursor-id-modifier...${NC}"
|
|
|
|
# Run the program
|
|
export AUTOMATED_MODE=1
|
|
if ! cursor-id-modifier; then
|
|
echo -e "${RED}Failed to run cursor-id-modifier${NC}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
main
|