-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
135 lines (116 loc) · 4.45 KB
/
install.sh
File metadata and controls
135 lines (116 loc) · 4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/usr/bin/env bash
# Coven Code installer for Linux and macOS.
# Upstream: Claurst installer by Kuber Mehta (GPL-3.0), rebranded for OpenCoven/coven-codes.
#
# Quick install:
# curl -fsSL https://github.com/OpenCoven/coven-code/releases/latest/download/install.sh | bash
#
# Offline / pinned:
# curl -fsSL -O https://github.com/OpenCoven/coven-code/releases/latest/download/install.sh
# chmod +x install.sh
# ./install.sh --version 0.1.4
set -euo pipefail
APP=coven-code
REPO=OpenCoven/coven-code
RED='\033[0;31m'; GREEN='\033[0;32m'; YELLOW='\033[1;33m'
BLUE='\033[0;34m'; MUTED='\033[0;90m'; NC='\033[0m'; BOLD='\033[1m'
print_message() {
local type="$1"; local msg="$2"
case "$type" in
info) echo -e "${BLUE}ℹ${NC} $msg" ;;
success) echo -e "${GREEN}✓${NC} $msg" ;;
warning) echo -e "${YELLOW}⚠${NC} $msg" ;;
error) echo -e "${RED}✗${NC} $msg" ;;
*) echo " $msg" ;;
esac
}
usage() {
cat <<EOF
${BOLD}Coven Code installer${NC}
USAGE:
install.sh [OPTIONS]
OPTIONS:
--version <ver> Install a specific version (default: latest)
--install-dir <dir> Override install location (default: ~/.coven-code/bin)
--binary <path> Use a local binary instead of downloading
-h, --help Show this help
EXAMPLES:
curl -fsSL https://github.com/OpenCoven/coven-code/releases/latest/download/install.sh | bash
./install.sh --version 0.1.4
./install.sh --binary /path/to/coven-code
EOF
}
# Parse args
specific_version=""; install_dir_override=""; local_binary=""
while [[ $# -gt 0 ]]; do
case "$1" in
--version) specific_version="$2"; shift 2 ;;
--install-dir) install_dir_override="$2"; shift 2 ;;
--binary) local_binary="$2"; shift 2 ;;
-h|--help) usage; exit 0 ;;
*) print_message error "Unknown option: $1"; usage; exit 1 ;;
esac
done
# Detect platform
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
case "$OS" in
linux) PLATFORM="linux" ;;
darwin) PLATFORM="macos" ;;
*) print_message error "Unsupported OS: $OS"; exit 1 ;;
esac
case "$ARCH" in
x86_64|amd64) ARCH_TAG="x86_64" ;;
aarch64|arm64) ARCH_TAG="aarch64" ;;
*) print_message error "Unsupported architecture: $ARCH"; exit 1 ;;
esac
INSTALL_DIR="${install_dir_override:-$HOME/.coven-code/bin}"
mkdir -p "$INSTALL_DIR"
# Resolve version
if [[ -z "$specific_version" ]]; then
print_message info "Fetching latest release..."
specific_version=$(curl -fsSL "https://api.github.com/repos/${REPO}/releases/latest" | grep '"tag_name"' | sed -E 's/.*"v?([^"]+)".*/\1/')
fi
print_message info "Installing ${APP} v${specific_version}"
# Check existing
existing_path=$(command -v "$APP" 2>/dev/null || true)
if [[ -n "$existing_path" ]]; then
installed_version=$("$existing_path" --version 2>/dev/null | head -1 | sed 's/[^0-9.]//g' || echo "unknown")
print_message info "${MUTED}Found existing ${APP} at ${NC}${existing_path}${MUTED} (v${installed_version}) — upgrading to v${specific_version}${NC}"
fi
ARTIFACT="${APP}-${PLATFORM}-${ARCH_TAG}"
ARCHIVE_NAME="${ARTIFACT}.tar.gz"
DOWNLOAD_URL="https://github.com/${REPO}/releases/download/v${specific_version}/${ARCHIVE_NAME}"
if [[ -n "$local_binary" ]]; then
print_message info "Using local binary: $local_binary"
cp "$local_binary" "${INSTALL_DIR}/${APP}"
chmod +x "${INSTALL_DIR}/${APP}"
else
tmp_dir=$(mktemp -d -t coven-code-install-XXXXXX)
trap 'rm -rf "$tmp_dir"' EXIT
print_message info "Downloading ${ARCHIVE_NAME}..."
curl -fsSL --progress-bar "$DOWNLOAD_URL" -o "${tmp_dir}/${ARCHIVE_NAME}"
tar -xzf "${tmp_dir}/${ARCHIVE_NAME}" -C "$tmp_dir"
cp "${tmp_dir}/${APP}" "${INSTALL_DIR}/${APP}"
chmod +x "${INSTALL_DIR}/${APP}"
fi
# PATH setup
shell_rc=""
case "${SHELL:-}" in
*/zsh) shell_rc="$HOME/.zshrc" ;;
*/bash) shell_rc="$HOME/.bashrc" ;;
*/fish) shell_rc="$HOME/.config/fish/config.fish" ;;
esac
path_line="export PATH=\"\$PATH:${INSTALL_DIR}\""
if [[ -n "$shell_rc" ]] && ! grep -qF "$INSTALL_DIR" "$shell_rc" 2>/dev/null; then
echo "" >> "$shell_rc"
echo "# Coven Code" >> "$shell_rc"
echo "$path_line" >> "$shell_rc"
print_message info "Added ${INSTALL_DIR} to PATH in ${shell_rc}"
fi
print_message success "${APP} v${specific_version} installed to ${INSTALL_DIR}/${APP}"
echo ""
echo -e " ${GREEN}${APP}${NC} ${MUTED}# Interactive TUI${NC}"
echo -e " ${GREEN}${APP} -p \"...\"${NC} ${MUTED}# Headless one-shot${NC}"
echo ""
echo -e " ${MUTED}Restart your shell or run: source ${shell_rc:-~/.bashrc}${NC}"