-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·80 lines (63 loc) · 1.94 KB
/
Copy pathinstall.sh
File metadata and controls
executable file
·80 lines (63 loc) · 1.94 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
#!/bin/sh
# torah-cli installer
# Usage: curl -fsSL https://raw.githubusercontent.com/assafdori/torah-cli/main/install.sh | sh
set -e
REPO="assafdori/torah-cli"
BINARY="torah"
INSTALL_DIR="${INSTALL_DIR:-/usr/local/bin}"
# Detect OS and architecture
detect_platform() {
OS="$(uname -s)"
ARCH="$(uname -m)"
case "$OS" in
Linux) OS="unknown-linux-gnu" ;;
Darwin) OS="apple-darwin" ;;
*) echo "Error: Unsupported OS: $OS"; exit 1 ;;
esac
case "$ARCH" in
x86_64|amd64) ARCH="x86_64" ;;
arm64|aarch64) ARCH="aarch64" ;;
*) echo "Error: Unsupported architecture: $ARCH"; exit 1 ;;
esac
TARGET="${ARCH}-${OS}"
}
# Get latest release tag from GitHub
get_latest_version() {
VERSION=$(curl -fsSL "https://api.github.com/repos/${REPO}/releases/latest" | grep '"tag_name"' | sed -E 's/.*"v([^"]+)".*/\1/')
if [ -z "$VERSION" ]; then
echo "Error: Could not determine latest version"
exit 1
fi
}
main() {
echo ""
echo " Installing torah-cli..."
echo ""
detect_platform
get_latest_version
URL="https://github.com/${REPO}/releases/download/v${VERSION}/${BINARY}-${TARGET}.tar.gz"
echo " Platform: ${TARGET}"
echo " Version: v${VERSION}"
echo " URL: ${URL}"
echo ""
# Download and extract
TMPDIR=$(mktemp -d)
trap 'rm -rf "$TMPDIR"' EXIT
echo " Downloading..."
curl -fsSL "$URL" -o "${TMPDIR}/torah.tar.gz"
echo " Extracting..."
tar xzf "${TMPDIR}/torah.tar.gz" -C "$TMPDIR"
echo " Installing to ${INSTALL_DIR}..."
if [ -w "$INSTALL_DIR" ]; then
mv "${TMPDIR}/${BINARY}" "${INSTALL_DIR}/${BINARY}"
else
sudo mv "${TMPDIR}/${BINARY}" "${INSTALL_DIR}/${BINARY}"
fi
chmod +x "${INSTALL_DIR}/${BINARY}"
echo ""
echo " torah-cli v${VERSION} installed successfully!"
echo ""
echo " Run 'torah' to start reading."
echo ""
}
main