-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·68 lines (52 loc) · 1.58 KB
/
install.sh
File metadata and controls
executable file
·68 lines (52 loc) · 1.58 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
#!/usr/bin/env bash
set -euo pipefail
REPO="trouze/dbtp"
BINARY="dbtp"
INSTALL_DIR="${DBTP_INSTALL_DIR:-$HOME/.local/bin}"
get_latest_version() {
curl -fsSL "https://api.github.com/repos/${REPO}/releases/latest" \
| grep '"tag_name"' \
| sed -E 's/.*"tag_name": *"([^"]+)".*/\1/'
}
detect_target() {
local os arch
os="$(uname -s)"
arch="$(uname -m)"
case "${os}" in
Linux) os="unknown-linux-gnu" ;;
Darwin) os="apple-darwin" ;;
*) echo "Unsupported OS: ${os}" >&2; exit 1 ;;
esac
case "${arch}" in
x86_64|amd64) arch="x86_64" ;;
arm64|aarch64) arch="aarch64" ;;
*) echo "Unsupported architecture: ${arch}" >&2; exit 1 ;;
esac
echo "${arch}-${os}"
}
main() {
local version target url tmpdir
version="${1:-$(get_latest_version)}"
target="$(detect_target)"
url="https://github.com/${REPO}/releases/download/${version}/${BINARY}-${version}-${target}.tar.gz"
echo "Installing ${BINARY} ${version} for ${target}..."
tmpdir="$(mktemp -d)"
trap 'rm -rf "${tmpdir}"' EXIT
curl -fsSL "${url}" | tar xz -C "${tmpdir}"
mkdir -p "${INSTALL_DIR}"
mv "${tmpdir}/${BINARY}" "${INSTALL_DIR}/${BINARY}"
chmod +x "${INSTALL_DIR}/${BINARY}"
echo "Installed ${BINARY} to ${INSTALL_DIR}/${BINARY}"
case ":${PATH}:" in
*":${INSTALL_DIR}:"*) ;;
*)
echo ""
echo "NOTE: ${INSTALL_DIR} is not in your PATH."
echo "Add it by running:"
echo " export PATH=\"${INSTALL_DIR}:\$PATH\""
echo "Or add that line to your ~/.zshrc / ~/.bashrc."
;;
esac
"${INSTALL_DIR}/${BINARY}" --version
}
main "$@"