-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·132 lines (107 loc) · 2.58 KB
/
install.sh
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
#!/bin/sh
set -eu
DEFAULT_VERSION="${DEFAULT_VERSION:-latest}"
DEFAULT_DIRECTORY="."
usage() {
echo "Usage: $0 [-d|--directory <directory>] [-v|--version <version>]"
echo
echo "Options:"
echo " -d, --directory Directory to download the binary to (default: $DEFAULT_DIRECTORY)"
echo " -v, --version Version to download (default: $DEFAULT_VERSION)"
echo " -h, --help Display this help message"
exit 1
}
DIRECTORY=$DEFAULT_DIRECTORY
VERSION=$DEFAULT_VERSION
while [ $# -gt 0 ]; do
case $1 in
-d|--directory)
DIRECTORY="$2"
shift 2
;;
-v|--version)
VERSION="$2"
shift 2
;;
-h|--help)
usage
;;
*)
echo "Unknown option: $1"
usage
;;
esac
done
mkdir -p "$DIRECTORY"
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
case $ARCH in
x86_64)
ARCH="amd64"
;;
amd64)
ARCH="amd64"
;;
arm64)
ARCH="arm64"
;;
aarch64)
ARCH="arm64"
;;
i386|i686)
ARCH="i386"
;;
*)
echo "Unsupported architecture: $ARCH"
exit 1
;;
esac
case $OS in
mingw*|msys*|cygwin*)
OS="windows"
FILE_EXT="zip"
;;
darwin)
OS="darwin"
FILE_EXT="tar.gz"
;;
linux)
OS="linux"
FILE_EXT="tar.gz"
;;
*)
echo "Unsupported OS: $OS"
exit 1
;;
esac
ASSET_NAME="prometheus-command-timer-${OS}-${ARCH}.${FILE_EXT}"
if [ "$VERSION" = "latest" ]; then
DOWNLOAD_URL="https://github.com/meysam81/prometheus-command-timer/releases/latest/download/$ASSET_NAME"
else
DOWNLOAD_URL="https://github.com/meysam81/prometheus-command-timer/releases/download/$VERSION/$ASSET_NAME"
fi
echo "Downloading prometheus-command-timer binary..."
echo "OS: $OS"
echo "Architecture: $ARCH"
echo "Version: $VERSION"
echo "Download URL: $DOWNLOAD_URL"
echo "Destination directory: $DIRECTORY"
DIRECTORY=${DIRECTORY%/}
if ! wget -q -O "$DIRECTORY/$ASSET_NAME" "$DOWNLOAD_URL"; then
echo "Download failed!"
exit 1
fi
echo "Extracting file..."
cd "$DIRECTORY" || exit 1
if [ "$FILE_EXT" = "zip" ]; then
if ! command -v unzip >/dev/null 2>&1; then
echo "unzip is not installed. Please install it to extract zip files."
exit 1
fi
unzip -o "$ASSET_NAME"
else
tar -xzf "$ASSET_NAME"
fi
rm "$ASSET_NAME"
"$DIRECTORY/prometheus-command-timer" -version
echo "Installation complete! Executable binary is available in $DIRECTORY/prometheus-command-timer"